Skip to content

Commit

Permalink
💩 add code to showcase qodana works
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt committed Nov 20, 2022
1 parent 43586ce commit b3f2b96
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/spoon/support/StandardEnvironment.java
Original file line number Diff line number Diff line change
Expand Up @@ -763,4 +763,11 @@ public boolean isIgnoreDuplicateDeclarations() {
public void setIgnoreDuplicateDeclarations(boolean ignoreDuplicateDeclarations) {
this.ignoreDuplicateDeclarations = ignoreDuplicateDeclarations;
}

static public void foo() {
// TODO Auto-generated method stub
int[] a = null;
Arrays.toString(a);
boolean b = a == null | false;
}
}

0 comments on commit b3f2b96

Please sign in to comment.