Commit ef767f40 authored by Riegel's avatar Riegel
Browse files

Supressed unused parameter warnings in interface. Ref #69

parent f147a2b2
...@@ -60,6 +60,7 @@ import de.hft.stuttgart.citydoctor2.check.error.UnknownCheckError; ...@@ -60,6 +60,7 @@ import de.hft.stuttgart.citydoctor2.check.error.UnknownCheckError;
* @author Matthias Betz * @author Matthias Betz
* *
*/ */
@SuppressWarnings("unused")
public interface HealingMethod { public interface HealingMethod {
...@@ -68,7 +69,7 @@ public interface HealingMethod { ...@@ -68,7 +69,7 @@ public interface HealingMethod {
default boolean visit(CheckError e, ModificationListener l) { default boolean visit(CheckError e, ModificationListener l) {
return false; return false;
} }
default boolean visit(DegeneratedRingError e, ModificationListener l) { default boolean visit(DegeneratedRingError e, ModificationListener l) {
return false; return false;
} }
...@@ -184,11 +185,11 @@ public interface HealingMethod { ...@@ -184,11 +185,11 @@ public interface HealingMethod {
default boolean visit(NotGroundError err, ModificationListener l) { default boolean visit(NotGroundError err, ModificationListener l) {
return false; return false;
} }
default boolean visit(SchematronError err, ModificationListener l) { default boolean visit(SchematronError err, ModificationListener l) {
return false; return false;
} }
default boolean visit(SurfaceUnfragmentedError err, ModificationListener l) { default boolean visit(SurfaceUnfragmentedError err, ModificationListener l) {
return false; return false;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment