Skip to content

Commit

Permalink
Revert changes to HasConstructorCall
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Feb 4, 2025
1 parent 572b7f4 commit a4cf5cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void shouldCreateViableClassWhenMutatingArrayListConstructor() {
static class HasConstructorCall implements Callable<String> {
@Override
public String call() throws Exception {
final Integer i = Integer.valueOf(12);
final Integer i = new Integer(12);
return "" + (i == null);
}
}
Expand Down

0 comments on commit a4cf5cf

Please sign in to comment.