### Eclipse Workspace Patch 1.0 #P org.eclipse.pde.ui.templates Index: templates_3.3/helloRCP/java/ApplicationWorkbenchAdvisor.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.pde.ui.templates/templates_3.3/helloRCP/java/ApplicationWorkbenchAdvisor.java,v retrieving revision 1.3 diff -u -r1.3 ApplicationWorkbenchAdvisor.java --- templates_3.3/helloRCP/java/ApplicationWorkbenchAdvisor.java 21 Mar 2007 07:33:10 -0000 1.3 +++ templates_3.3/helloRCP/java/ApplicationWorkbenchAdvisor.java 16 Jul 2008 12:11:02 -0000 @@ -6,7 +6,7 @@ public class ApplicationWorkbenchAdvisor extends WorkbenchAdvisor { - private static final String PERSPECTIVE_ID = "$pluginId$.perspective"; + private static final String PERSPECTIVE_ID = "$pluginId$.perspective"; //$$NON-NLS-1$$ public WorkbenchWindowAdvisor createWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer) { return new ApplicationWorkbenchWindowAdvisor(configurer); Index: templates_3.3/helloRCP/java/ApplicationWorkbenchWindowAdvisor.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.pde.ui.templates/templates_3.3/helloRCP/java/ApplicationWorkbenchWindowAdvisor.java,v retrieving revision 1.3 diff -u -r1.3 ApplicationWorkbenchWindowAdvisor.java --- templates_3.3/helloRCP/java/ApplicationWorkbenchWindowAdvisor.java 21 Mar 2007 07:33:10 -0000 1.3 +++ templates_3.3/helloRCP/java/ApplicationWorkbenchWindowAdvisor.java 16 Jul 2008 12:11:02 -0000 @@ -22,7 +22,7 @@ configurer.setShowCoolBar(false); configurer.setShowStatusLine(false); %if productBranding == false - configurer.setTitle("$windowTitle$"); + configurer.setTitle("$windowTitle$"); //$$NON-NLS-1$$ %endif } } #P org.eclipse.pde.ui Index: src/org/eclipse/pde/internal/ui/wizards/plugin/PluginClassCodeGenerator.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/wizards/plugin/PluginClassCodeGenerator.java,v retrieving revision 1.33 diff -u -r1.33 PluginClassCodeGenerator.java --- src/org/eclipse/pde/internal/ui/wizards/plugin/PluginClassCodeGenerator.java 16 Jan 2008 17:08:32 -0000 1.33 +++ src/org/eclipse/pde/internal/ui/wizards/plugin/PluginClassCodeGenerator.java 16 Jul 2008 12:11:04 -0000 @@ -89,7 +89,7 @@ writer.println("public class " + className + " extends Plugin {"); //$NON-NLS-1$ //$NON-NLS-2$ writer.println(); writer.println("\t// The plug-in ID"); //$NON-NLS-1$ - writer.println("\tpublic static final String PLUGIN_ID = \"" + fPluginData.getId() + "\";"); //$NON-NLS-1$ //$NON-NLS-2$ + writer.println("\tpublic static final String PLUGIN_ID = \"" + fPluginData.getId() + "\"; //$NON-NLS-1$"); //$NON-NLS-1$ //$NON-NLS-2$ writer.println(); writer.println("\t// The shared instance"); //$NON-NLS-1$ writer.println("\tprivate static " + className + " plugin;"); //$NON-NLS-1$ //$NON-NLS-2$