@@ -26,29 +26,6 @@ public abstract class PropertyBaseCondition<Handler extends ConditionPropertyHan
2626 private PropertyMap <Handler > properties ;
2727 private final Property <Handler > property = getProperty ();
2828
29- /**
30- * Registers a new property condition. The property type is set to {@link PropertyType#BE}.
31- *
32- * @param condition the class to register
33- * @param property the property name, for example <i>fly</i> in <i>players can fly</i>
34- * @param type must be plural, for example <i>players</i> in <i>players can fly</i>
35- */
36- public static void register (Class <? extends Condition > condition , String property , String type ) {
37- PropertyCondition .register (condition , property , type );
38- }
39-
40- /**
41- * Registers a new property condition.
42- *
43- * @param condition the class to register
44- * @param propertyType the property type, see {@link PropertyType}
45- * @param property the property name, for example <i>fly</i> in <i>players can fly</i>
46- * @param type must be plural, for example <i>players</i> in <i>players can fly</i>
47- */
48- public static void register (Class <? extends Condition > condition , PropertyType propertyType , String property , String type ) {
49- PropertyCondition .register (condition , propertyType , property , type );
50- }
51-
5229 @ Override
5330 public boolean init (Expression <?>[] expressions , int matchedPattern , Kleenean isDelayed , ParseResult parseResult ) {
5431 this .propertyHolder = PropertyBaseSyntax .asProperty (property , expressions [0 ]);
0 commit comments