diff options
author | Xavier Ducrohet <xav@android.com> | 2014-07-21 19:39:15 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-07-17 23:22:26 +0000 |
commit | 5afdda0e90c1900d7f249985ddc09ed4a98ce053 (patch) | |
tree | bbb1a1407b427086690468542bd43b1b085c084b /eclipse | |
parent | f97852ed287f6c8a26414ae163e5423f9af1d0b9 (diff) | |
parent | da05944ba41aeb8fcd4530e76a41ef4a05d375a0 (diff) | |
download | sdk-5afdda0e90c1900d7f249985ddc09ed4a98ce053.zip sdk-5afdda0e90c1900d7f249985ddc09ed4a98ce053.tar.gz sdk-5afdda0e90c1900d7f249985ddc09ed4a98ce053.tar.bz2 |
Merge "Correct incorrect test for RenderScript support." into idea133
Diffstat (limited to 'eclipse')
-rw-r--r-- | eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/LibraryClasspathContainerInitializer.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/LibraryClasspathContainerInitializer.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/LibraryClasspathContainerInitializer.java index 525e2fd..8fbee40 100644 --- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/LibraryClasspathContainerInitializer.java +++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/LibraryClasspathContainerInitializer.java @@ -338,18 +338,18 @@ public class LibraryClasspathContainerInitializer extends BaseClasspathContainer return null; } BuildToolInfo buildToolInfo = state.getBuildToolInfo(); - if (buildToolInfo != null) { + if (buildToolInfo == null) { buildToolInfo = Sdk.getCurrent().getLatestBuildTool(); if (buildToolInfo == null) { return null; } + } - File renderScriptSupportJar = RenderScriptProcessor.getSupportJar( - buildToolInfo.getLocation().getAbsolutePath()); + File renderScriptSupportJar = RenderScriptProcessor.getSupportJar( + buildToolInfo.getLocation().getAbsolutePath()); - jarFiles.add(renderScriptSupportJar); - } + jarFiles.add(renderScriptSupportJar); } // process all the libraries |