Skip to content

Commit 1c6e7b9

Browse files
authored
Fix extra space in ES5, ES6 and AS3
1 parent 3e1c5a6 commit 1c6e7b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

templates/as3/MovieClip.mtt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package ::PACKAGE_NAME:: {
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)