Changeset 7225
- Timestamp:
- Nov 14, 2016, 2:42:17 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/util/extensions/Registry.java
r7224 r7225 711 711 712 712 private final String id; 713 private finalClass<A> actionClass;713 private Class<A> actionClass; 714 714 private final Map<String, RegisteredExtension<A>> extensions; 715 715 … … 731 731 { 732 732 this.id = ep.getId(); 733 this.actionClass = ep.getActionClass();734 733 this.extensions = new HashMap<String, RegisteredExtension<A>>(); 735 734 update(ep, classLoader); … … 799 798 "; old classloader="+this.classLoader + "; new classLoader="+classLoader); 800 799 } 800 this.actionClass = ep.getActionClass(); 801 801 this.classLoader = classLoader; 802 802 this.name = ep.getName();
Note: See TracChangeset
for help on using the changeset viewer.