Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 3411

Show
Ignore:
Timestamp:
02/18/08 19:19:48 (11 months ago)
Author:
tmdugan
Message:

-- dss

* added a null check

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/dss/src/org/openmrs/module/dss/util/Util.java

    r3359 r3411  
    287287        public static String extractIntFromString(String input) 
    288288        { 
     289                if(input == null) 
     290                { 
     291                        return null; 
     292                } 
    289293                String[] tokens = Pattern.compile("\\D").split(input); 
    290294                StringBuffer result = new StringBuffer();