Missing resource bundle is now a warning
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/f7956f9a Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/f7956f9a Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/f7956f9a Branch: refs/heads/develop Commit: f7956f9a413f87318f8e88a4761d3b2d031e5a25 Parents: fee5fba Author: Alex Harui <[email protected]> Authored: Tue Sep 17 12:03:45 2013 -0700 Committer: Alex Harui <[email protected]> Committed: Tue Sep 17 12:04:38 2013 -0700 ---------------------------------------------------------------------- .../compiler/problems/ResourceBundleNotFoundForLocaleProblem.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/f7956f9a/compiler/src/org/apache/flex/compiler/problems/ResourceBundleNotFoundForLocaleProblem.java ---------------------------------------------------------------------- diff --git a/compiler/src/org/apache/flex/compiler/problems/ResourceBundleNotFoundForLocaleProblem.java b/compiler/src/org/apache/flex/compiler/problems/ResourceBundleNotFoundForLocaleProblem.java index 3c3694e..202c149 100644 --- a/compiler/src/org/apache/flex/compiler/problems/ResourceBundleNotFoundForLocaleProblem.java +++ b/compiler/src/org/apache/flex/compiler/problems/ResourceBundleNotFoundForLocaleProblem.java @@ -20,11 +20,13 @@ package org.apache.flex.compiler.problems; import org.apache.flex.compiler.common.ISourceLocation; +import org.apache.flex.compiler.problems.annotations.DefaultSeverity; /** * This problem gets created when the bundle with a specified name cannot be * found for a specific locale. */ +@DefaultSeverity(CompilerProblemSeverity.WARNING) public final class ResourceBundleNotFoundForLocaleProblem extends ResourceBundleNotFoundProblem { public static final String DESCRIPTION =
