added spaces after if and inside the ternary operator
This commit is contained in:
@@ -6,7 +6,7 @@ import java.util.List;
|
||||
public class TestClassCast {
|
||||
public void test(List var1) {
|
||||
Object var2 = var1;// 22
|
||||
if(var1 != null) {// 23
|
||||
if (var1 != null) {// 23
|
||||
((List)(var2 = new ArrayList(var1))).add("23");// 24
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user