From 373f59053719c293c77f72058dca84206a09ac81 Mon Sep 17 00:00:00 2001 From: paltherr Date: Wed, 17 Dec 2003 10:53:09 +0000 Subject: - Fixed method toString --- sources/scalac/atree/ATestOp.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sources/scalac/atree') diff --git a/sources/scalac/atree/ATestOp.java b/sources/scalac/atree/ATestOp.java index 3eed9bd2c5..1d90f5ba0e 100644 --- a/sources/scalac/atree/ATestOp.java +++ b/sources/scalac/atree/ATestOp.java @@ -53,12 +53,12 @@ public class ATestOp { /** Returns a string representation of this operation. */ public String toString() { switch (this) { - case EQ: return "NE"; - case NE: return "EQ"; - case LT: return "GE"; - case GE: return "LT"; - case LE: return "GT"; - case GT: return "LE"; + case EQ: return "EQ"; + case NE: return "NE"; + case LT: return "LT"; + case GE: return "GE"; + case LE: return "LE"; + case GT: return "GT"; default: throw Debug.abort("unknown case", this); } } -- cgit v1.2.3