浏览代码

fix whitespace

Simon Krajewski 10 年之前
父节点
当前提交
2733d1dece
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      tests/unit/src/unit/hxcpp_issues/Issue173.hx

+ 3 - 3
tests/unit/src/unit/hxcpp_issues/Issue173.hx

@@ -1,7 +1,7 @@
 package unit.hxcpp_issues;
 package unit.hxcpp_issues;
 
 
 private class X1 implements Y1 {
 private class X1 implements Y1 {
-    public function new () {}
+	public function new () {}
 }
 }
 
 
 private interface Y1 extends Z1 {}
 private interface Y1 extends Z1 {}
@@ -10,7 +10,7 @@ private interface Z1 {}
 
 
 class Issue173 extends Test {
 class Issue173 extends Test {
 	function test() {
 	function test() {
-        var z:Z1 = new X1();
-        t(z != null);
+		var z:Z1 = new X1();
+		t(z != null);
 	}
 	}
 }
 }