From e732fc7232a791d1ecf3a5bf86e25f946c5c0860 Mon Sep 17 00:00:00 2001 From: Sebastian Brosch Date: Tue, 7 May 2024 20:59:14 +0200 Subject: [PATCH] suppress warning --- VL13/Aufgabe02/MyQueue.java | 1 + 1 file changed, 1 insertion(+) diff --git a/VL13/Aufgabe02/MyQueue.java b/VL13/Aufgabe02/MyQueue.java index c934f41..39b3f0c 100644 --- a/VL13/Aufgabe02/MyQueue.java +++ b/VL13/Aufgabe02/MyQueue.java @@ -17,6 +17,7 @@ public class MyQueue { this.adjustInternalArray(); } + @SuppressWarnings("unchecked") public T get() { T retValue = (T) this.myArray[0];