### Eclipse Workspace Patch 1.0 #P org.jboss.tools.project.examples Index: src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java =================================================================== --- src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java (revision 35885) +++ src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java (working copy) @@ -201,7 +201,7 @@ for (int i = 0; i < runtimes.length; i++) { IRuntime runtime = runtimes[i]; IRuntimeType runtimeType = runtime.getRuntimeType(); - if (runtimeType.getId().equals(allowedType)) { + if (runtimeType != null && runtimeType.getId().equals(allowedType)) { IRuntime componentPresent = isComponentPresent(fix, runtime); if (componentPresent != null) { return isComponentPresent(fix, runtime);