This commit is contained in:
Ondřej Hruška
2014-04-01 10:08:04 +02:00
parent ca0cd329cf
commit 2628cf6eda
3 changed files with 0 additions and 3 deletions
@@ -23,7 +23,6 @@ public abstract class AbstractIonList<T> extends ArrayList<T> implements Ionizab
byte b = StreamUtils.readByte(in);
if (b == IonMarks.ENTRY) {
@SuppressWarnings("unchecked")
T value = (T) Ion.readObject(in);
add(value);
} else if (b == IonMarks.END) {
@@ -38,7 +38,6 @@ public abstract class AbstractIonMap<V> extends LinkedHashMap<String, V> impleme
if (b == IonMarks.ENTRY) {
String key = StreamUtils.readStringBytes(in);
@SuppressWarnings("unchecked")
V value = (V) Ion.readObject(in);
put(key, value);
@@ -64,7 +64,6 @@ public class ObjectUtils {
Collections.sort(entries, new Comparator<Map.Entry<K, V>>() {
@SuppressWarnings("unchecked")
@Override
public int compare(Entry<K, V> o1, Entry<K, V> o2)
{