diff options
author | Tor Norbye <tnorbye@google.com> | 2012-12-11 10:24:43 -0800 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-12-11 10:28:10 -0800 |
commit | 6c0eb1ff22473910087e0558110a6785baf65b51 (patch) | |
tree | 3e40be417af3ce7c917103387a7f3e805276b6f3 /lint/libs/lint_api | |
parent | f5129f903171de8aaf70608a9e7cfeef03fa5eec (diff) | |
download | sdk-6c0eb1ff22473910087e0558110a6785baf65b51.zip sdk-6c0eb1ff22473910087e0558110a6785baf65b51.tar.gz sdk-6c0eb1ff22473910087e0558110a6785baf65b51.tar.bz2 |
Add lint recycle detector
This lint check looks for missing recycle() calls on resources such as
TypedArrays, MotionEvents, and Messages.
41140 New Lint Check: Check Recycling VelocityTracker
41138 New Lint Check: Check Recycling Message
41137 New Lint Check: Check Recycling MotionEvent
41136 New Lint Check: Check Recycling TypedArray
In addition, it also flags cases where a method is called on a resource
after the resource has been recycled.
Change-Id: Ia06a1779519971d5459f1cd98914a6aededc4b83
Diffstat (limited to 'lint/libs/lint_api')
-rw-r--r-- | lint/libs/lint_api/.classpath | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lint/libs/lint_api/.classpath b/lint/libs/lint_api/.classpath index 426f226..b9f0a8a 100644 --- a/lint/libs/lint_api/.classpath +++ b/lint/libs/lint_api/.classpath @@ -3,10 +3,10 @@ <classpathentry excluding="Android.mk" kind="src" path="src/main/java"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry combineaccessrules="false" kind="src" path="/common"/> - <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/asm-tools/asm-4.0.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/asm-tools/src.zip"/> - <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/asm-tools/asm-tree-4.0.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/asm-tools/src.zip"/> - <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/guava-tools/guava-13.0.1.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/guava-tools/src.zip"/> - <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/lombok-ast/lombok-ast-0.2.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/lombok-ast/src.zip"/> + <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/asm-tools/asm-4.0.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/asm-tools/src-4.0.zip"/> + <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/asm-tools/asm-tree-4.0.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/asm-tools/src-4.0.zip"/> + <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/guava-tools/guava-13.0.1.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/guava-tools/src-4.0.zip"/> + <classpathentry kind="var" path="ANDROID_SRC/prebuilts/tools/common/lombok-ast/lombok-ast-0.2.jar" sourcepath="/ANDROID_SRC/prebuilts/tools/common/lombok-ast/src-4.0.zip"/> <classpathentry combineaccessrules="false" kind="src" path="/layoutlib_api"/> <classpathentry combineaccessrules="false" kind="src" path="/SdkLib"/> <classpathentry kind="output" path="bin"/> |