From 1fc21e403373d4ce4ff8a456f3af3a6f0ffc583d Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Tue, 18 Aug 2020 08:27:19 +0200 Subject: [PATCH] remove annotation --- src/de/inetsoftware/jwebassembly/module/WasmCodeBuilder.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/de/inetsoftware/jwebassembly/module/WasmCodeBuilder.java b/src/de/inetsoftware/jwebassembly/module/WasmCodeBuilder.java index 895887a..1b5e153 100644 --- a/src/de/inetsoftware/jwebassembly/module/WasmCodeBuilder.java +++ b/src/de/inetsoftware/jwebassembly/module/WasmCodeBuilder.java @@ -421,7 +421,6 @@ public abstract class WasmCodeBuilder { * @param lineNumber * the line number in the Java source code */ - @Nonnull protected void addTableInstruction( boolean load, @Nonnegative int idx, int javaCodePos, int lineNumber ) { instructions.add( new WasmTableInstruction( load, idx, javaCodePos, lineNumber ) ); }