suppress warning

This commit is contained in:
Sebastian Brosch 2024-05-07 20:59:14 +02:00
parent 8a7d98881e
commit e732fc7232

View File

@ -17,6 +17,7 @@ public class MyQueue<T> {
this.adjustInternalArray();
}
@SuppressWarnings("unchecked")
public T get() {
T retValue = (T) this.myArray[0];