Skip to content
Snippets Groups Projects
Commit 9fbc4116 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

removed raw type warnings

parent 3cc7ec69
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ import teetime.framework.exceptionHandling.TerminatingExceptionListenerFactory; ...@@ -28,7 +28,7 @@ import teetime.framework.exceptionHandling.TerminatingExceptionListenerFactory;
*/ */
public abstract class Configuration extends AbstractCompositeStage { public abstract class Configuration extends AbstractCompositeStage {
private final IExceptionListenerFactory factory; private final IExceptionListenerFactory<?> factory;
private final ConfigurationContext context; private final ConfigurationContext context;
private boolean executed; private boolean executed;
...@@ -38,7 +38,7 @@ public abstract class Configuration extends AbstractCompositeStage { ...@@ -38,7 +38,7 @@ public abstract class Configuration extends AbstractCompositeStage {
this(new TerminatingExceptionListenerFactory()); this(new TerminatingExceptionListenerFactory());
} }
protected Configuration(final IExceptionListenerFactory factory) { protected Configuration(final IExceptionListenerFactory<?> factory) {
this.factory = factory; this.factory = factory;
this.context = new ConfigurationContext(this); this.context = new ConfigurationContext(this);
} }
...@@ -51,7 +51,7 @@ public abstract class Configuration extends AbstractCompositeStage { ...@@ -51,7 +51,7 @@ public abstract class Configuration extends AbstractCompositeStage {
this.executed = executed; this.executed = executed;
} }
public IExceptionListenerFactory getFactory() { public IExceptionListenerFactory<?> getFactory() {
return factory; return factory;
} }
......
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