------------------------------------------------------------ revno: 9791 committer: Lars Helge Ă˜verland <larshe...@gmail.com> branch nick: dhis2 timestamp: Tue 2013-02-12 17:06:05 +0200 message: Cleanup modified: dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/GenericStore.java dhis-2/dhis-api/src/main/java/org/hisp/dhis/document/DocumentService.java dhis-2/dhis-api/src/main/java/org/hisp/dhis/period/WeeklyPeriodType.java dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramExpressionService.java dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramValidationService.java dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupStoreTest.java dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorStoreTest.java
-- lp:dhis2 https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk Your team DHIS 2 developers is subscribed to branch lp:dhis2. To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/GenericStore.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/GenericStore.java 2013-02-07 08:40:18 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/GenericStore.java 2013-02-12 15:06:05 +0000 @@ -27,7 +27,6 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -import java.util.Collection; import java.util.List; /** === modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/document/DocumentService.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/document/DocumentService.java 2013-02-08 05:10:24 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/document/DocumentService.java 2013-02-12 15:06:05 +0000 @@ -27,7 +27,6 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -import java.util.Collection; import java.util.List; /** === modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/period/WeeklyPeriodType.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/period/WeeklyPeriodType.java 2013-02-11 12:02:26 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/period/WeeklyPeriodType.java 2013-02-12 15:06:05 +0000 @@ -230,7 +230,10 @@ int week = cal.get( Calendar.WEEK_OF_YEAR); int month = cal.get( Calendar.MONTH); - if (week == 1 && month == Calendar.DECEMBER) ++year; + if ( week == 1 && month == Calendar.DECEMBER ) + { + ++year; + } String periodString = year + "W" + week; return periodString; === modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramExpressionService.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramExpressionService.java 2013-02-08 08:58:33 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramExpressionService.java 2013-02-12 15:06:05 +0000 @@ -30,8 +30,6 @@ import java.util.Collection; import java.util.Map; -import org.hisp.dhis.i18n.I18nFormat; - /** * @author Chau Thu Tran * === modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramValidationService.java' --- dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramValidationService.java 2013-02-08 08:58:33 +0000 +++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/program/ProgramValidationService.java 2013-02-12 15:06:05 +0000 @@ -29,8 +29,6 @@ import java.util.Collection; -import org.hisp.dhis.i18n.I18nFormat; - /** * @author Chau Thu Tran * @version $ ProgramValidationService.java Apr 28, 2011 10:32:20 AM $ === modified file 'dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupStoreTest.java' --- dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupStoreTest.java 2013-02-07 10:25:34 +0000 +++ dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupStoreTest.java 2013-02-12 15:06:05 +0000 @@ -27,14 +27,17 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + +import java.util.Collection; + import org.hisp.dhis.DhisSpringTest; import org.hisp.dhis.common.GenericIdentifiableObjectStore; import org.junit.Test; -import java.util.Collection; - -import static org.junit.Assert.*; - /** * @author Lars Helge Overland * @version $Id$ @@ -57,7 +60,6 @@ { IndicatorGroup groupA = new IndicatorGroup( "IndicatorGroupA" ); IndicatorGroup groupB = new IndicatorGroup( "IndicatorGroupB" ); - IndicatorGroup groupC = new IndicatorGroup( "IndicatorGroupA" ); int idA = indicatorGroupStore.save( groupA ); int idB = indicatorGroupStore.save( groupB ); === modified file 'dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorStoreTest.java' --- dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorStoreTest.java 2013-02-07 10:25:34 +0000 +++ dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorStoreTest.java 2013-02-12 15:06:05 +0000 @@ -84,7 +84,6 @@ { IndicatorType typeA = new IndicatorType( "IndicatorTypeA", 100, false ); IndicatorType typeB = new IndicatorType( "IndicatorTypeB", 1, false ); - IndicatorType typeC = new IndicatorType( "IndicatorTypeA", 100, false ); int idA = indicatorTypeStore.save( typeA ); int idB = indicatorTypeStore.save( typeB ); @@ -191,7 +190,6 @@ Indicator indicatorA = createIndicator( 'A', type ); Indicator indicatorB = createIndicator( 'B', type ); - Indicator indicatorC = createIndicator( 'A', type ); int idA = indicatorStore.save( indicatorA ); int idB = indicatorStore.save( indicatorB );
_______________________________________________ Mailing list: https://launchpad.net/~dhis2-devs Post to : dhis2-devs@lists.launchpad.net Unsubscribe : https://launchpad.net/~dhis2-devs More help : https://help.launchpad.net/ListHelp