made class static final

This commit is contained in:
hneemann 2016-04-15 19:33:53 +02:00
parent dfd823a74a
commit ee2513d013

View File

@ -113,13 +113,13 @@ public final class ShapeFactory {
} }
public class CreatorSimple implements Creator { private static final class CreatorSimple implements Creator {
private final String name; private final String name;
private final ElementTypeDescription description; private final ElementTypeDescription description;
private final boolean invers; private final boolean invers;
public CreatorSimple(String name, ElementTypeDescription description, boolean invers) { private CreatorSimple(String name, ElementTypeDescription description, boolean invers) {
this.name = name; this.name = name;
this.description = description; this.description = description;
this.invers = invers; this.invers = invers;