Skip to content

Commit

Permalink
Add type witnesses.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Sep 25, 2024
1 parent 642ea4f commit cdbe5ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public void testSimpleTransformationMultiRelease() throws Exception {
Plugin plugin = eager
? new SimplePlugin()
: new PreprocessingPlugin(new SimplePlugin());
Plugin.Engine.Source source = Plugin.Engine.Source.InMemory.ofTypes(Collections.emptyList(), Collections.singletonMap(
Plugin.Engine.Source source = Plugin.Engine.Source.InMemory.ofTypes(Collections.<Class<?>>emptyList(), Collections.<ClassFileVersion, Collection<Class<?>>>singletonMap(
ClassFileVersion.JAVA_V11,
Collections.singletonList(Sample.class)));
Plugin.Engine.Target.InMemory target = new Plugin.Engine.Target.InMemory();
Expand Down

0 comments on commit cdbe5ec

Please sign in to comment.