Skip to content

Commit 022611d

Browse files
committed
adjust spaces
1 parent 1b8ecd3 commit 022611d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/java.xml/share/classes/jdk/xml/internal/JdkXmlUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public static boolean setProperty(XMLSecurityManager xsm, XMLSecurityPropertyMan
130130
public static String getProperty(XMLSecurityManager xsm, XMLSecurityPropertyManager xspm,
131131
String property) {
132132
String value = null;
133-
if (xsm != null && (value = xsm.getLimitAsString(property)) != null) {
133+
if (xsm != null && (value = xsm.getLimitAsString(property)) != null) {
134134
return value;
135135
}
136136
if (xspm != null) {

test/jaxp/javax/xml/jaxp/unittest/common/PropertiesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void testProperties(Processor processor, String apiProperty, String apiValue,
125125
switch (processor) {
126126
case DOM:
127127
DocumentBuilderFactory dbf = DocumentBuilderFactory.newDefaultInstance();
128-
if (apiValue != null) dbf.setAttribute(apiProperty, apiValue);
128+
if (apiValue != null) dbf.setAttribute(apiProperty, apiValue);
129129
ret1 = dbf.getAttribute(apiProperty);
130130
break;
131131
case SAX:

0 commit comments

Comments
 (0)