Skip to content
Open
9 changes: 9 additions & 0 deletions DeepanshaChowdhary.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
public class DeepanshaChowdhary {
static void randomMethod() {
System.out.println("random text");
}
public static void main(String[] args) {
randomMethod();

}
}
9 changes: 9 additions & 0 deletions JoeRomeo.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
public class JoeRomeo {
public int joe() {
return "Joe";
}

public int romeo() {
return "Romeo";
}
}
3 changes: 3 additions & 0 deletions MarcoTereh.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
public class MarcoTereh {
void foo() {}
}
8 changes: 4 additions & 4 deletions MyClass.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
public class MyClass {

public String niceMethod() {
String nice = "we are updating this string at the moment but, if you experience any conflict, please do not hesitate to modify it to set the value that you have chosen";
return nice;
String romeo = "YAYYYY no more conflicts";
return romeo;
}

}