add types to remove warnings
Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/8ed358b0 Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/8ed358b0 Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/8ed358b0 Branch: refs/heads/master Commit: 8ed358b03b6c5dc725675a76476940b43eae914e Parents: faf3504 Author: Justin Mclean <[email protected]> Authored: Fri Oct 24 14:55:49 2014 +1100 Committer: Justin Mclean <[email protected]> Committed: Fri Oct 24 14:55:49 2014 +1100 ---------------------------------------------------------------------- ant_on_air/src/org/apache/flex/ant/tags/Get.as | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8ed358b0/ant_on_air/src/org/apache/flex/ant/tags/Get.as ---------------------------------------------------------------------- diff --git a/ant_on_air/src/org/apache/flex/ant/tags/Get.as b/ant_on_air/src/org/apache/flex/ant/tags/Get.as index bf0f549..2042d32 100644 --- a/ant_on_air/src/org/apache/flex/ant/tags/Get.as +++ b/ant_on_air/src/org/apache/flex/ant/tags/Get.as @@ -47,10 +47,10 @@ package org.apache.flex.ant.tags Ant.antTagProcessors["get"] = Get; } - private static const DOWNLOADS_SOURCEFORGE_NET = "http://downloads.sourceforge.net/"; - private static const SOURCEFORGE_NET = "http://sourceforge.net/"; - private static const DL_SOURCEFORGE_NET = ".dl.sourceforge.net/"; - private static const USE_MIRROR = "use_mirror="; + private static const DOWNLOADS_SOURCEFORGE_NET:String = "http://downloads.sourceforge.net/"; + private static const SOURCEFORGE_NET:String = "http://sourceforge.net/"; + private static const DL_SOURCEFORGE_NET:String = ".dl.sourceforge.net/"; + private static const USE_MIRROR:String = "use_mirror="; public function Get() {
