Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix JarInfer handling of generic types #1078

Merged
merged 13 commits into from
Dec 12, 2024
Prev Previous commit
Next Next commit
remove errant semicolon
msridhar committed Nov 22, 2024
commit 33adba1f36ff169d8af3bffa01cd2053f38abba7
Original file line number Diff line number Diff line change
@@ -46,7 +46,6 @@ public String getString(T t) {
public static void genericParam(Generic<String> g) {
g.getString("hello");
}
;

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