Skip to content

Commit 08316d5

Browse files
committed
renamed (bad copy/paste remains)
1 parent df80902 commit 08316d5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

org/w3c/css/properties/css3/CssAlignSelf.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ public CssAlignSelf(ApplContext ac, CssExpression expression, boolean check)
8383
}
8484
setByUser();
8585

86-
value = parseJustifyContent(ac, expression, this);
86+
value = parseAlignSelf(ac, expression, this);
8787
if (!expression.end()) {
8888
throw new InvalidParamException("unrecognize", ac);
8989
}
9090
}
9191

92-
public static CssValue parseJustifyContent(ApplContext ac, CssExpression expression,
93-
CssProperty caller)
92+
public static CssValue parseAlignSelf(ApplContext ac, CssExpression expression,
93+
CssProperty caller)
9494
throws InvalidParamException {
9595
CssValue val, value;
9696
ArrayList<CssValue> values = new ArrayList<>();

org/w3c/css/properties/css3/CssJustifySelf.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ public CssJustifySelf(ApplContext ac, CssExpression expression, boolean check)
6464
}
6565
setByUser();
6666

67-
value = parseJustifyContent(ac, expression, this);
67+
value = parseJustifySelf(ac, expression, this);
6868
if (!expression.end()) {
6969
throw new InvalidParamException("unrecognize", ac);
7070
}
7171
}
7272

73-
public static CssValue parseJustifyContent(ApplContext ac, CssExpression expression,
74-
CssProperty caller)
73+
public static CssValue parseJustifySelf(ApplContext ac, CssExpression expression,
74+
CssProperty caller)
7575
throws InvalidParamException {
7676
CssValue val, value;
7777
ArrayList<CssValue> values = new ArrayList<>();

0 commit comments

Comments
 (0)