plugins/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/core/project/WRT11ApplicationLayout.java
changeset 472 bd9f2d7c64a6
parent 470 d4809db37847
child 479 518afa7c6d2f
equal deleted inserted replaced
471:06589bf52fa7 472:bd9f2d7c64a6
   146                 file = tryCaseInsensitiveSearch(project, path);
   146                 file = tryCaseInsensitiveSearch(project, path);
   147             } catch (CoreException e) {
   147             } catch (CoreException e) {
   148                 Activator.log(e);
   148                 Activator.log(e);
   149             }
   149             }
   150         }
   150         }
   151         return file.exists() && isFileIncluded(file) ? file : null;
   151         return (file != null && file.exists()) && isFileIncluded(file) ? file : null;
   152     }
   152     }
   153 
   153 
   154 }
   154 }