diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-05-03 17:50:02 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-05-03 17:50:02 -0600 |
commit | 8b481ec08efa60d462897a98bec3f6761c2933d1 (patch) | |
tree | 04e43861a364b8a9fe052057412f0c852c3ce334 /boil/TypeFactory.java | |
parent | e8be6dd157bed1b09312aa360ec8ee2f41813d0f (diff) |
Move creating temporaries to Expression statements in BoilVisitor
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; - } } |