summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2015-04-09 19:06:22 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-09 19:06:22 +0000
commit3c9c2be94a1b36a7e01c9011966137badee8b843 (patch)
tree6ee608df2213f6f5c5a7cb25128a870608b5f32b
parentc97bf6882b8e5378b9edbeaa49dc81a9f76b1788 (diff)
parentdf9c8e86eaa4ecc8793a8a25c82ed962bd27c16d (diff)
downloadreplicant_sdk-3c9c2be94a1b36a7e01c9011966137badee8b843.zip
replicant_sdk-3c9c2be94a1b36a7e01c9011966137badee8b843.tar.gz
replicant_sdk-3c9c2be94a1b36a7e01c9011966137badee8b843.tar.bz2
am df9c8e86: am 870db7fb: am 1c92675c: Merge "Update ADT plugin with lint API change" into studio-1.3-dev automerge: d21a036 automerge: d26711d
* commit 'df9c8e86eaa4ecc8793a8a25c82ed962bd27c16d': Update ADT plugin with lint API change
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/EclipseLintClient.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/EclipseLintClient.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/EclipseLintClient.java
index 154d35e..bd6a55a 100644
--- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/EclipseLintClient.java
+++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/EclipseLintClient.java
@@ -903,7 +903,12 @@ public class EclipseLintClient extends LintClient {
libraries = super.getClassPath(project).getLibraries();
}
- info = new ClassPathInfo(sources, classes, libraries);
+
+ // No test folders in Eclipse:
+ // https://bugs.eclipse.org/bugs/show_bug.cgi?id=224708
+ List<File> tests = Collections.emptyList();
+
+ info = new ClassPathInfo(sources, classes, libraries, tests);
mProjectInfo.put(project, info);
}