Skip to content

Commit

Permalink
Merge pull request #768 from kohlschutter/ck/RemoveAccessibilityProvider
Browse files Browse the repository at this point in the history
test: Change erased type in AnnotationTest
  • Loading branch information
lgrignon committed Oct 17, 2023
2 parents 358adbc + 34d9e67 commit ca05c8e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.util.EventObject;
import java.util.List;
import java.util.Map;
import java.util.ServiceLoader;

import jsweet.lang.Name;

Expand All @@ -27,7 +28,7 @@ public static void main(String[] args) {

public void toBeErased() {
// this will not be transpiled because the method will be erased
javax.accessibility.AccessibilityProvider foo = null;
ServiceLoader<?> foo = null;
}

public void m() {
Expand Down

0 comments on commit ca05c8e

Please sign in to comment.