mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
SSR: remove unused and incomplete copy constructor
This commit is contained in:
+1
-7
@@ -57,8 +57,7 @@ public class SubstitutionHandler extends MatchingHandler {
|
||||
}
|
||||
};
|
||||
|
||||
public SubstitutionHandler(final String name, final boolean target, int minOccurs,
|
||||
int maxOccurs, boolean greedy) {
|
||||
public SubstitutionHandler(String name, boolean target, int minOccurs, int maxOccurs, boolean greedy) {
|
||||
this.name = name;
|
||||
this.maxOccurs = maxOccurs;
|
||||
this.minOccurs = minOccurs;
|
||||
@@ -66,11 +65,6 @@ public class SubstitutionHandler extends MatchingHandler {
|
||||
this.greedy = greedy;
|
||||
}
|
||||
|
||||
public SubstitutionHandler(final SubstitutionHandler substitutionHandler) {
|
||||
this(substitutionHandler.getName(),substitutionHandler.isTarget(), substitutionHandler.getMinOccurs(),
|
||||
substitutionHandler.getMaxOccurs(), substitutionHandler.greedy);
|
||||
}
|
||||
|
||||
public boolean isSubtype() {
|
||||
return subtype;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user