diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-15 15:19:54 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-15 15:19:54 -0600 |
commit | 04e9109f112f4cb7317416c2e31806f42663cb45 (patch) | |
tree | 9ae99f2bc5d5fbb41d731792b1d22a30f2e642b3 /boil/library/TypeFactory.java | |
parent | 056690e0e60d4d0ce046c171691aa02a7071eeae (diff) |
Allow MethodInstance to keep track of parent class
Diffstat (limited to 'boil/library/TypeFactory.java')
-rw-r--r-- | boil/library/TypeFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boil/library/TypeFactory.java b/boil/library/TypeFactory.java index 432fc0f..be77f63 100644 --- a/boil/library/TypeFactory.java +++ b/boil/library/TypeFactory.java @@ -35,7 +35,7 @@ public class TypeFactory { String rtn = ""; rtn += String.format("t.%d", type_num-x); - for (int i = type_num-(x+1); i < type_num; ++i) { + for (int i = type_num-(x-1); i < type_num; ++i) { rtn += String.format(" t.%d", i); } |