diff options
author | Tor Norbye <tnorbye@google.com> | 2012-09-26 21:39:00 -0700 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-09-27 10:56:00 -0700 |
commit | 23a79f5867b552c918f1c06b6103f1d8dc88b033 (patch) | |
tree | 1713df7b478d1fda5812a0fff40fa9ee2c64799b /common/src/com/android | |
parent | 3c5badce945d4c2af761e1877af197beefe0443c (diff) | |
download | sdk-23a79f5867b552c918f1c06b6103f1d8dc88b033.zip sdk-23a79f5867b552c918f1c06b6103f1d8dc88b033.tar.gz sdk-23a79f5867b552c918f1c06b6103f1d8dc88b033.tar.bz2 |
Cache applicable issue lists per scope set
Keep sets of applicable issues for each scope set. This
should make incremental lint slightly more efficient.
Also add a check that icon file extensions match the
actual file format.
Change-Id: I4a7f5e19b91aa3613480aa831ec42065528f02d3
Diffstat (limited to 'common/src/com/android')
-rw-r--r-- | common/src/com/android/SdkConstants.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/src/com/android/SdkConstants.java b/common/src/com/android/SdkConstants.java index 04fa987..833acdc 100644 --- a/common/src/com/android/SdkConstants.java +++ b/common/src/com/android/SdkConstants.java @@ -835,6 +835,7 @@ public final class SdkConstants { public static final String DOT_XML = ".xml"; //$NON-NLS-1$ public static final String DOT_GIF = ".gif"; //$NON-NLS-1$ public static final String DOT_JPG = ".jpg"; //$NON-NLS-1$ + public static final String DOT_JPEG = ".jpeg"; //$NON-NLS-1$ public static final String DOT_PNG = ".png"; //$NON-NLS-1$ public static final String DOT_9PNG = ".9.png"; //$NON-NLS-1$ public static final String DOT_JAVA = ".java"; //$NON-NLS-1$ |