Skip to content

Commit c13450c

Browse files
eggrobinmarkusicu
andauthored
Factor conditionals
Co-authored-by: Markus Scherer <[email protected]>
1 parent 61249ff commit c13450c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

UnicodeJsps/src/main/java/org/unicode/jsp/UnicodeUtilities.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,9 +1771,7 @@ class PropertyAssignment {
17711771
+ "#"
17721772
+ propName
17731773
+ "'>"
1774-
+ (provisional ? "(" : "")
1775-
+ propName
1776-
+ (provisional ? ")" : "")
1774+
+ (provisional ? "(" + propName + ")" : propName)
17771775
+ "</a></th>");
17781776
for (PropertyAssignment assignment : history) {
17791777
String first =

0 commit comments

Comments
 (0)