← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 19893: minor fix, remove unused ValueType enum option

 

------------------------------------------------------------
revno: 19893
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2015-08-31 09:55:58 +0700
message:
  minor fix, remove unused ValueType enum option
modified:
  dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/ValueType.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/ValueType.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/ValueType.java	2015-08-27 15:28:24 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/common/ValueType.java	2015-08-31 02:55:58 +0000
@@ -53,9 +53,8 @@
     INTEGER( Integer.class ),
     INTEGER_POSITIVE( Integer.class ),
     INTEGER_NEGATIVE( Integer.class ),
-    INTEGER_ZERO_OR_POSITIVE( Integer.class ),
-    NEGATIVE_INTEGER( Integer.class );
-    
+    INTEGER_ZERO_OR_POSITIVE( Integer.class );
+
     private final Class<?> javaClass;
     
     ValueType()