summaryrefslogtreecommitdiff
path: root/test/haxe/src/TestServerHandler.hx
diff options
context:
space:
mode:
Diffstat (limited to 'test/haxe/src/TestServerHandler.hx')
-rw-r--r--test/haxe/src/TestServerHandler.hx12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/haxe/src/TestServerHandler.hx b/test/haxe/src/TestServerHandler.hx
index 9e2a633bb..abcef1349 100644
--- a/test/haxe/src/TestServerHandler.hx
+++ b/test/haxe/src/TestServerHandler.hx
@@ -120,19 +120,19 @@ class TestServerHandler implements ThriftTest {
* Prints 'testBinary("%s")' where '%s' is a hex-formatted string of thing's data
* @param binary thing - the binary data to print
* @return binary - returns the binary 'thing'
- *
+ *
* @param thing
*/
public function testBinary(thing : haxe.io.Bytes) : haxe.io.Bytes
{
- var hex = "";
- for ( i in 0 ... thing.length) {
- hex += StringTools.hex( thing.get(i), 2);
- }
+ var hex = "";
+ for ( i in 0 ... thing.length) {
+ hex += StringTools.hex( thing.get(i), 2);
+ }
trace('testBinary($hex)');
return thing;
}
-
+
/**
* Prints 'testStruct("{%s}")' where thing has been formatted
* into a string of comma separated values