[cleanup] erefactor/EclipseJdt - Remove redundant semicolons (#8666)

EclipseJdt cleanup 'RemoveRedundantSemicolons' applied by erefactor.

For EclipseJdt see https://www.eclipse.org/eclipse/news/4.18/jdt.php
For erefactor see https://github.com/cal101/erefactor
This commit is contained in:
cal
2021-02-27 08:45:51 +01:00
committed by GitHub
parent 2327f856cd
commit bc4bc36de7
6 changed files with 6 additions and 8 deletions

View File

@@ -53,5 +53,5 @@ public interface TemplateProcessor {
* @param path The path which has caused an error
* @param context The reason for the error
*/
default void error(Path path, String context) { };
default void error(Path path, String context) { }
}

View File

@@ -308,7 +308,7 @@ public class WorkflowSettings {
private String ignoreFileOverride;
// NOTE: All collections must be mutable in the builder, and copied to a new immutable collection in .build()
private Map<String, String> globalProperties = new HashMap<>();;
private Map<String, String> globalProperties = new HashMap<>();
private Builder() {
}