diff options
Diffstat (limited to 'boil/TypeFactory.java')
-rw-r--r-- | boil/TypeFactory.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/boil/TypeFactory.java b/boil/TypeFactory.java index d5b61f3..224d8a3 100644 --- a/boil/TypeFactory.java +++ b/boil/TypeFactory.java @@ -31,21 +31,4 @@ public class TypeFactory { return alias; } - public String retrieveRecentList(int x) { - /** - * Given int x, retrieve a space-delimited - * list of the x most recent entries. - */ - String rtn = ""; - if (x > 0) { - rtn += String.format("t.%d", - type_num-x); - for (int i = type_num-(x-1); i < type_num; ++i) { - rtn += String.format(" t.%d", - i); - } - } - - return rtn; - } } |