Skip to content

Commit

Permalink
Revert formatting changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
smillst committed Jul 1, 2024
1 parent db7296b commit 348c579
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package annotations.tests.classfile.cases;

public class TestClassEmpty {}
public class TestClassEmpty {

}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ public String a() {
s = s + s;
return s;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ public class TestFieldGeneric<T> {
Set<TestFieldGeneric> set;
TestFieldGeneric<T> testFieldGeneric = new TestFieldGeneric<>();

public TestFieldGeneric() {}
public TestFieldGeneric() {

}

Set<String> otherSet;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public TestLocalVariableGenericArray() {
int k = 1;
for (Map<String, String> e : map2.get("4gf")) {
if (k < 5) {
k = map2.get("").indexOf(new ArrayList<Map<String, String>>());
k = map2.get("").indexOf(new ArrayList<Map<String,String>>());
} else {
k = this.i.intValue() + 5;
}
Expand Down Expand Up @@ -62,4 +62,5 @@ protected void someMethod4() {
System.out.println(i);
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class TestTypecastGenericArray {
public Boolean b;
public Set<String> set;
public HashSet<Set<String>> hset;
public Map<Set<String>, Set<Map<String, Set<String>>>> map;
public Map<Set<String>,Set<Map<String,Set<String>>>> map;

public void test() {
o = (Object) o;
Expand Down
1 change: 0 additions & 1 deletion annotation-file-utilities/tests/Issue216.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ public class Issue216 {
Object value;
Object value2 = new Object();
Issue216 t = this;

// TODO
// Object[] array = new Object[0];

Expand Down

0 comments on commit 348c579

Please sign in to comment.