Type safety

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@136 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Dave Hoover
2006-12-27 07:55:38 +00:00
parent 5f144bc8a9
commit 86a879a725
@@ -107,9 +107,9 @@ public abstract class GameConfig extends PlaceConfig implements Cloneable
* Returns a List of strings that describe the configuration of this * Returns a List of strings that describe the configuration of this
* game. Default implementation returns an empty list. * game. Default implementation returns an empty list.
*/ */
public List getDescription () public List<String> getDescription ()
{ {
return new ArrayList(); // nothing by default return new ArrayList<String>(); // nothing by default
} }
/** /**