PREF: Modified bug for checking null 80/13080/1
authordonghyuk.yang <donghyuk.yang@samsung.com>
Thu, 28 Nov 2013 00:47:13 +0000 (09:47 +0900)
committerdonghyuk.yang <donghyuk.yang@samsung.com>
Thu, 28 Nov 2013 00:47:13 +0000 (09:47 +0900)
Change-Id: I8638ad5203459e9923938c1483c2697b6374d206
Signed-off-by: donghyuk.yang <donghyuk.yang@samsung.com>
org.tizen.nativeplatform/src/org/tizen/nativeplatform/indexer/IndexerPreferenceProcessor.java

index d5a494d..b2cadc0 100644 (file)
@@ -27,7 +27,7 @@ public class IndexerPreferenceProcessor {
     }
 
     public boolean process() {
-        if (project != null) {
+        if (project == null) {
             logger.warn("Failed to set default indexer: Project is null");
             return false;
         }