From 0b0e3d24eaccd0193078a0fa511052c92909cdd7 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 24 Oct 2023 18:43:52 +0200 Subject: [PATCH] Fix malformated java code --- hwb1/src/hwb1/MyApplet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwb1/src/hwb1/MyApplet.java b/hwb1/src/hwb1/MyApplet.java index 7dc89d5..e9dd240 100644 --- a/hwb1/src/hwb1/MyApplet.java +++ b/hwb1/src/hwb1/MyApplet.java @@ -26,7 +26,7 @@ public class MyApplet extends Applet { * @param bLength the length in bytes of the parameter data in bArray */ public static void install(byte[] bArray, short bOffset, byte bLength) { - new MyApplet(byte[] bArray, short bOffset, byte bLength); + new MyApplet(bArray, bOffset, bLength); } /**