Supressed warnings in eclipse

This commit is contained in:
Olof Larsson 2011-10-11 13:03:33 +02:00
parent 6ab7e10d1f
commit b0e31eb837
1 changed files with 2 additions and 0 deletions

View File

@ -136,11 +136,13 @@ public class Persist {
// LOAD BY TYPE // LOAD BY TYPE
@SuppressWarnings("unchecked")
public <T> T load(Type typeOfT, String name) public <T> T load(Type typeOfT, String name)
{ {
return (T) load(typeOfT, getFile(name)); return (T) load(typeOfT, getFile(name));
} }
@SuppressWarnings("unchecked")
public <T> T load(Type typeOfT, File file) public <T> T load(Type typeOfT, File file)
{ {
String content = DiscUtil.readCatch(file); String content = DiscUtil.readCatch(file);