← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 911: Minor simplification.

 

------------------------------------------------------------
revno: 911
committer: Lars Helge Oeverland larshelge@xxxxxxxxx
branch nick: trunk
timestamp: Tue 2009-10-27 18:47:39 +0100
message:
  Minor simplification.
modified:
  dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/dataelement/DataElementGroupSetStoreTest.java
  dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupSetStoreTest.java
  dhis-2/dhis-support/dhis-support-test/src/main/java/org/hisp/dhis/GenericDhisSpringTest.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-services/dhis-service-core/src/test/java/org/hisp/dhis/dataelement/DataElementGroupSetStoreTest.java'
--- dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/dataelement/DataElementGroupSetStoreTest.java	2009-10-27 17:41:53 +0000
+++ dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/dataelement/DataElementGroupSetStoreTest.java	2009-10-27 17:47:39 +0000
@@ -48,7 +48,7 @@
     }    
 
     @Override
-    protected String getGenericStoreBeanId()
+    protected String getGenericBeanId()
     {
         return "org.hisp.dhis.dataelement.DataElementGroupSetStore";
     }

=== modified file 'dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupSetStoreTest.java'
--- dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupSetStoreTest.java	2009-10-27 17:41:53 +0000
+++ dhis-2/dhis-services/dhis-service-core/src/test/java/org/hisp/dhis/indicator/IndicatorGroupSetStoreTest.java	2009-10-27 17:47:39 +0000
@@ -48,7 +48,7 @@
     }
 
     @Override
-    protected String getGenericStoreBeanId()
+    protected String getGenericBeanId()
     {
         return "org.hisp.dhis.indicator.IndicatorGroupSetStore";
     }

=== modified file 'dhis-2/dhis-support/dhis-support-test/src/main/java/org/hisp/dhis/GenericDhisSpringTest.java'
--- dhis-2/dhis-support/dhis-support-test/src/main/java/org/hisp/dhis/GenericDhisSpringTest.java	2009-10-27 17:41:53 +0000
+++ dhis-2/dhis-support/dhis-support-test/src/main/java/org/hisp/dhis/GenericDhisSpringTest.java	2009-10-27 17:47:39 +0000
@@ -48,7 +48,7 @@
     public final void setUpTest()
         throws Exception
     {
-        genericStore = (GenericStore<T>) getBean( getGenericStoreBeanId() );
+        genericStore = (GenericStore<T>) getBean( getGenericBeanId() );
         
         setUpGenericTest();
     }
@@ -147,5 +147,5 @@
     /**
      * Should return the Spring bean identifier of the store which is to be tested.
      */
-    protected abstract String getGenericStoreBeanId();
+    protected abstract String getGenericBeanId();
 }