Use consistent block style
Update all code to use a consistent block style. Issue: SPR-16968
This commit is contained in:
committed by
Juergen Hoeller
parent
04a8c285df
commit
866e9d702e
@@ -951,7 +951,9 @@ public class CodeFlow implements Opcodes {
|
||||
int length = arraytype.length();
|
||||
for (int i = 0; i < length; i++) {
|
||||
char ch = arraytype.charAt(i);
|
||||
if (ch == '[') continue;
|
||||
if (ch == '[') {
|
||||
continue;
|
||||
}
|
||||
return ch=='L';
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user