From ad8acdbd1d03704bada89ed2157271eebcf3d3ca Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 18 Apr 2007 02:47:16 +0000 Subject: [PATCH] Comment fiddling. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4668 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/presents/tools/ActionScriptSource.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/java/com/threerings/presents/tools/ActionScriptSource.java b/src/java/com/threerings/presents/tools/ActionScriptSource.java index eb9f154c5..831452379 100644 --- a/src/java/com/threerings/presents/tools/ActionScriptSource.java +++ b/src/java/com/threerings/presents/tools/ActionScriptSource.java @@ -702,8 +702,7 @@ public class ActionScriptSource case CLASSBODY: // see if we match a field declaration if ((m = ASFIELD.matcher(line)).matches()) { - // if this line does not contain a semicolon, keep sucking - // up lines until it does + // if this line does not contain a semicolon, keep reading until it does if (line.indexOf(";") == -1) { line = slurpUntil(bin, line, ";", false); } @@ -717,8 +716,7 @@ public class ActionScriptSource // see if we match a constructor declaration } else if (line.indexOf("public function " + className) != -1) { - // if this line does not contain a close paren, keep - // sucking up lines until it does + // if this line does not contain a close paren, keep reading until it does if (line.indexOf(")") == -1) { line = slurpUntil(bin, line, ")", false); } @@ -743,8 +741,7 @@ public class ActionScriptSource // see if we match a method declaration } else if ((m = ASFUNCTION.matcher(line)).matches()) { - // if this line does not contain a close paren, keep - // sucking up lines until it does + // if this line does not contain a close paren, keep reading until it does if (line.indexOf(")") == -1) { line = slurpUntil(bin, line, ")", false); }