diff --git a/Tank/src/SetGeneric.java b/Tank/src/SetGeneric.java index 080f5b8..4b98a8f 100644 --- a/Tank/src/SetGeneric.java +++ b/Tank/src/SetGeneric.java @@ -56,6 +56,6 @@ public class SetGeneric { public T Get(int position) { if (position < 0 || position >= _places.length) return null; - return (T) _places[position]; + return (T)_places[position]; } } \ No newline at end of file