Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
nimakarimipour committed Nov 9, 2024
1 parent 10e0983 commit cf80cf7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sample/src/main/java/edu/ucr/cs/riple/annotator/sample/Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,27 @@

package edu.ucr.cs.riple.annotator.sample;

public class Test{
public class Test {
Object f1 = null;
Object f2 = null;
Object f3 = null;
Object f4 = null;
Object f5 = f4;
Object f6 = new Object();

String m1(){
String m1() {
return f1 != null ? f1.toString() : f2.toString() + f6.toString();
}

int m2(){
int m2() {
return f3 != null ? f3.hashCode() : f2.hashCode() + f6.hashCode();
}

Object m3(){
Object m3() {
return f5;
}

void m4(){
void m4() {
f6 = null;
}
}

0 comments on commit cf80cf7

Please sign in to comment.