Replace "if(" with "if ("

This commit is contained in:
Rossen Stoyanchev
2014-10-27 09:04:23 -04:00
parent 6592784ef4
commit da612d079f
15 changed files with 28 additions and 28 deletions

View File

@@ -36,7 +36,7 @@ public class ContextLoaderTestUtils {
}
public static void setCurrentWebApplicationContext(ClassLoader classLoader, WebApplicationContext applicationContext) {
if(applicationContext != null) {
if (applicationContext != null) {
currentContextPerThread.put(classLoader, applicationContext);
} else {
currentContextPerThread.remove(classLoader);

View File

@@ -234,7 +234,7 @@ public class ConvertingEncoderDecoderSupportTests {
@Override
public boolean equals(Object obj) {
if(obj instanceof MyType) {
if (obj instanceof MyType) {
return ((MyType)obj).value.equals(value);
}
return false;