summaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/048_methods2.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/patches/048_methods2.patch b/patches/patches/048_methods2.patch
index 781a99e..cd1b5d0 100644
--- a/patches/patches/048_methods2.patch
+++ b/patches/patches/048_methods2.patch
@@ -1,4 +1,4 @@
57c57
-< e = e.???; // Which method do we want here?
+< e = if (e.hasTail()) e.??? else break;
---
-> e = e.getTail(); // Which method do we want here?
+> e = if (e.hasTail()) e.getTail() else break;