aboutsummaryrefslogtreecommitdiffstats
path: root/lint
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2012-10-16 11:35:56 -0700
committerTor Norbye <tnorbye@google.com>2012-10-16 11:36:06 -0700
commit355aba9d3d53eb71c9721f3f1e019685dfbeaae0 (patch)
tree887add2b0e2a8a898cc7f47025912e123327e2ca /lint
parenta7aa43af50bfb747288d32142adf7df68cdfdc8a (diff)
downloadsdk-355aba9d3d53eb71c9721f3f1e019685dfbeaae0.zip
sdk-355aba9d3d53eb71c9721f3f1e019685dfbeaae0.tar.gz
sdk-355aba9d3d53eb71c9721f3f1e019685dfbeaae0.tar.bz2
Remove debug println
Change-Id: Icae211bc8c95b1acfbd84f382754755487876af2
Diffstat (limited to 'lint')
-rw-r--r--lint/libs/lint_checks/src/com/android/tools/lint/checks/RequiredAttributeDetector.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/lint/libs/lint_checks/src/com/android/tools/lint/checks/RequiredAttributeDetector.java b/lint/libs/lint_checks/src/com/android/tools/lint/checks/RequiredAttributeDetector.java
index f4b3830..81b0626 100644
--- a/lint/libs/lint_checks/src/com/android/tools/lint/checks/RequiredAttributeDetector.java
+++ b/lint/libs/lint_checks/src/com/android/tools/lint/checks/RequiredAttributeDetector.java
@@ -509,11 +509,5 @@ public class RequiredAttributeDetector extends LayoutDetector implements Detecto
}
}
}
- if (args.size() == 2) {
- } else if (args.size() == 3) {
- } else {
-// Debugging only
-context.report(ISSUE, context.getLocation(call), "Unexpected inflate signature here", null);
- }
}
}