Skip to content

Commit

Permalink
remove extraneous semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
msridhar committed Dec 21, 2024
1 parent ad2c5a2 commit 510cfaa
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,14 @@ public static void genericParam(Generic<String> g) {
public static void genericWildcard(Generic<?> g) {
g.doNothing();
}
;

public static String genericWildcardUpper(Generic<? extends String> g) {
return g.getSomething();
}
;

public static void genericWildcardLower(Generic<? super String> g) {
g.getString("hello");
}
;

public static void main(String arg[]) throws java.io.IOException {
String s = "test string...";
Expand Down

0 comments on commit 510cfaa

Please sign in to comment.