Skip to content
Snippets Groups Projects
Commit 849ac6a2 authored by Vincent Aravantinos's avatar Vincent Aravantinos
Browse files

makes addHandler non final

refs 2620
parent e821675e
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ import org.osgi.framework.Bundle;
* @author hoelzlf
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 6263C2A9DB5B72115C3FCF1BB154CEAF
* @ConQAT.Rating YELLOW Hash: ADF46952A610682E89FD917D0AD21203
*/
public abstract class ObjectAwareServiceBase<T extends IObjectAware<? extends Object>> implements
IIntrospectiveKernelService {
......@@ -138,7 +138,7 @@ public abstract class ObjectAwareServiceBase<T extends IObjectAware<? extends Ob
}
/** Adds the given handler to the map and the set. */
protected final void addHandler(Class<?> modelElementClass, T handler) {
protected void addHandler(Class<?> modelElementClass, T handler) {
List<T> list = handlerMap.get(modelElementClass);
if(list == null) {
list = new LinkedList<T>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment