[Swift-commit] r3462 - branches/tests-01/src/org/griphyn/vdl/karajan/lib/swiftscript
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Thu Jul 22 12:28:23 CDT 2010
Author: wozniak
Date: 2010-07-22 12:28:23 -0500 (Thu, 22 Jul 2010)
New Revision: 3462
Modified:
branches/tests-01/src/org/griphyn/vdl/karajan/lib/swiftscript/Tracef.java
Log:
Minor change
Modified: branches/tests-01/src/org/griphyn/vdl/karajan/lib/swiftscript/Tracef.java
===================================================================
--- branches/tests-01/src/org/griphyn/vdl/karajan/lib/swiftscript/Tracef.java 2010-07-22 17:14:28 UTC (rev 3461)
+++ branches/tests-01/src/org/griphyn/vdl/karajan/lib/swiftscript/Tracef.java 2010-07-22 17:28:23 UTC (rev 3462)
@@ -61,12 +61,12 @@
String spec = args[0].toString();
StringBuffer output = new StringBuffer();
int i = 0;
- int a = 1;
+ int arg = 1;
while (i < spec.length()) {
char c = spec.charAt(i);
if (c == '%') {
char d = spec.charAt(++i);
- a = append(d, a, args, output);
+ arg = append(d, arg, args, output);
}
else if (c == '\\') {
char d = spec.charAt(++i);
More information about the Swift-commit
mailing list