You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by go...@apache.org on 2013/04/03 05:11:18 UTC

git commit: Fixed warnings in compiler project.

Updated Branches:
  refs/heads/develop c52fa0545 -> 4c3b6d0a9


Fixed warnings in compiler project.

Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/4c3b6d0a
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/4c3b6d0a
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/4c3b6d0a

Branch: refs/heads/develop
Commit: 4c3b6d0a9275d4930962811b919ce8255a87e4ca
Parents: c52fa05
Author: Gordon Smith <go...@apache.org>
Authored: Tue Apr 2 20:11:04 2013 -0700
Committer: Gordon Smith <go...@apache.org>
Committed: Tue Apr 2 20:11:04 2013 -0700

----------------------------------------------------------------------
 .../internal/projects/FlexProjectConfigurator.java |    2 --
 .../flex/compiler/targets/ITargetSettings.java     |    8 ++++----
 2 files changed, 4 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4c3b6d0a/compiler/src/org/apache/flex/compiler/internal/projects/FlexProjectConfigurator.java
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/internal/projects/FlexProjectConfigurator.java b/compiler/src/org/apache/flex/compiler/internal/projects/FlexProjectConfigurator.java
index cd2a657..ad04252 100644
--- a/compiler/src/org/apache/flex/compiler/internal/projects/FlexProjectConfigurator.java
+++ b/compiler/src/org/apache/flex/compiler/internal/projects/FlexProjectConfigurator.java
@@ -19,9 +19,7 @@
 
 package org.apache.flex.compiler.internal.projects;
 
-import java.util.Collection;
 import java.util.HashMap;
-import java.util.HashSet;
 import java.util.Map;
 
 import org.apache.flex.compiler.config.Configuration;

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4c3b6d0a/compiler/src/org/apache/flex/compiler/targets/ITargetSettings.java
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/targets/ITargetSettings.java b/compiler/src/org/apache/flex/compiler/targets/ITargetSettings.java
index 61cc611..a33c0b7 100644
--- a/compiler/src/org/apache/flex/compiler/targets/ITargetSettings.java
+++ b/compiler/src/org/apache/flex/compiler/targets/ITargetSettings.java
@@ -457,15 +457,15 @@ public interface ITargetSettings
     boolean getMxmlChildrenAsData();
     
     /**
-     * @return true if the dead code filtering
-     * optimization step is enabled.
+     * @return true if the dead code filtering optimization step is enabled.
      */
     boolean getRemoveDeadCode();
 
     /**
-     * @return
+     * Gets the implicit imports for MXML.
+     * 
+     * @return An array of strings specifying the import targets.
      */
     String[] getMxmlImplicitImports();
-    
 }