Ignore:
Timestamp:
2012-05-22T13:01:04+12:00 (12 years ago)
Author:
sjm84
Message:

Fixing Greenstone 3's use (or lack thereof) of generics, this was done automatically so we may want to change it over time. This change will also auto-format any files that have not already been formatted.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/testing/ClassFinder.java

    r3290 r25635  
    1919 */
    2020public class ClassFinder {
    21     final private Vector classNameList = new Vector ();
     21    final private Vector<String> classNameList = new Vector<String> ();
    2222    final private int startPackageName;
    2323
     
    7878     * Return the found classes.
    7979     */
    80     public Iterator getClasses () {
     80    public Iterator<String> getClasses () {
    8181        return classNameList.iterator ();
    8282    }
Note: See TracChangeset for help on using the changeset viewer.