Ignore:
Timestamp:
12/16/11 10:56:01 (13 years ago)
Author:
sherbold
Message:
  • added private constructors to helper classes de.ugoe.cs.util.ArrayTools?, de.ugoe.cs.util.FileTools?, and de.ugoe.cs.util.StringTools? to prevent initialization of the classes (they only provide static methods)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaHelperLib/src/de/ugoe/cs/util/ArrayTools.java

    r290 r330  
    1010 */ 
    1111final public class ArrayTools { 
     12 
     13        /** 
     14         * <p> 
     15         * Private constructor to prevent initializing of the class. 
     16         * </p> 
     17         */ 
     18        private ArrayTools() { 
     19 
     20        } 
    1221 
    1322        /** 
     
    7382                return maxIndex; 
    7483        } 
    75          
     84 
    7685        /** 
    7786         * <p> 
Note: See TracChangeset for help on using the changeset viewer.