Ignore:
Timestamp:
08/23/08 11:13:42 (16 years ago)
Author:
bjn8
Message:

Made load actions method public - so plugins can load their custom actions upon initialization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/actions/Actions.java

    r242 r275  
    232232         *            The Class to load the Methods from.
    233233         */
    234         private static void LoadMethods(Class c) {
     234        public static void LoadMethods(Class c) {
     235                assert(c != null);
     236               
    235237                // list of methods to test
    236238                Method[] toLoad = c.getMethods();
Note: See TracChangeset for help on using the changeset viewer.