aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2012-02-01 17:53:10 -0800
committerTor Norbye <tnorbye@google.com>2012-02-01 18:03:16 -0800
commit684e6f77ddd7b95e9edee78ee7420367a2c378fd (patch)
tree0ccd640a6f668e74f249459dbcd5c5a31e59230f
parentffe27696388c8be914a319629b90b7b9ee3b06f9 (diff)
downloadsdk-684e6f77ddd7b95e9edee78ee7420367a2c378fd.zip
sdk-684e6f77ddd7b95e9edee78ee7420367a2c378fd.tar.gz
sdk-684e6f77ddd7b95e9edee78ee7420367a2c378fd.tar.bz2
Remove obsolete issue limitation description from UnusedResource detector
Change-Id: Id4caccd3f38f41288cc84dfe94546f18316631a2
-rw-r--r--lint/libs/lint_checks/src/com/android/tools/lint/checks/UnusedResourceDetector.java11
1 files changed, 1 insertions, 10 deletions
diff --git a/lint/libs/lint_checks/src/com/android/tools/lint/checks/UnusedResourceDetector.java b/lint/libs/lint_checks/src/com/android/tools/lint/checks/UnusedResourceDetector.java
index 73bd75d..a005eca 100644
--- a/lint/libs/lint_checks/src/com/android/tools/lint/checks/UnusedResourceDetector.java
+++ b/lint/libs/lint_checks/src/com/android/tools/lint/checks/UnusedResourceDetector.java
@@ -91,16 +91,7 @@ public class UnusedResourceDetector extends ResourceXmlDetector implements Detec
/** Unused resources (other than ids). */
public static final Issue ISSUE = Issue.create("UnusedResources", //$NON-NLS-1$
"Looks for unused resources",
- "Unused resources make applications larger and slow down builds.\n" +
- "\n" +
- "LIMITATIONS:\n" +
- "* If you are running lint from the command line instead of Eclipse, then the " +
- "analysis of Java files is pattern based rather than using an accurate parse " +
- "tree, so the results may not be accurate. (This limitation will go away soon.)\n" +
- "* The analysis does not consider dependencies between projects, so if you " +
- "have a library project which defines resources and a project including the " +
- "library project referencing the resources, then the resources will still be " +
- "reported as unused.",
+ "Unused resources make applications larger and slow down builds.",
Category.PERFORMANCE,
3,
Severity.WARNING,