← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 19180: minor fix

 

------------------------------------------------------------
revno: 19180
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Tue 2015-05-26 08:37:51 +0700
message:
  minor fix
modified:
  dhis-2/dhis-api/src/main/java/org/hisp/dhis/acl/AccessStringHelper.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/acl/AccessStringHelper.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/acl/AccessStringHelper.java	2015-01-19 05:09:11 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/acl/AccessStringHelper.java	2015-05-26 01:37:51 +0000
@@ -35,7 +35,7 @@
  */
 public class AccessStringHelper
 {
-    public static enum Permission
+    public enum Permission
     {
         READ( 'r', 0 ), WRITE( 'w', 1 );
 
@@ -43,7 +43,7 @@
 
         private int position;
 
-        private Permission( char value, int position )
+        Permission( char value, int position )
         {
             this.value = value;
             this.position = position;