Skip to content

Commit 3a51883

Browse files
committed
Fix extra space in TS, ES6 and AS3
1 parent 3e1c5a6 commit 3a51883

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

templates/as3/MovieClip.mtt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package ::PACKAGE_NAME:: {
22
import openfl.utils.Assets;
3-
::if BASE_CLASS_NAME:::else::import openfl.display.MovieClip;::end::
3+
::if BASE_CLASS_NAME::::else::import openfl.display.MovieClip;::end::
44

55
public class ::NATIVE_CLASS_NAME:: extends ::if BASE_CLASS_NAME::::BASE_CLASS_NAME::::else::MovieClip::end:: {
66

7-
::foreach CLASS_PROPERTIES:: public var ::name:::::type::;
7+
::foreach CLASS_PROPERTIES::public var ::name:::::type::;
88
::end::
99

1010
public function ::NATIVE_CLASS_NAME:: () {

templates/es6/MovieClip.mtt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Assets from "openfl/utils/Assets";
44

55
class ::NATIVE_CLASS_NAME:: extends ::if BASE_CLASS_NAME::::BASE_CLASS_NAME::::else::MovieClip::end:: {
66

7-
::foreach CLASS_PROPERTIES:: ::name::;
7+
::foreach CLASS_PROPERTIES::::name::;
88
::end::
99

1010
constructor () {

templates/ts/MovieClip.mtt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Assets from "openfl/utils/Assets";
33

44
class ::NATIVE_CLASS_NAME:: extends ::if BASE_CLASS_NAME::::BASE_CLASS_NAME::::else::MovieClip::end:: {
55

6-
::foreach CLASS_PROPERTIES:: public ::name::!:::type::;
6+
::foreach CLASS_PROPERTIES::public ::name::!:::type::;
77
::end::
88

99
constructor () {

0 commit comments

Comments
 (0)