JBoss Tools SVN: r44250 - trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/gef.
by jbosstools-commits@lists.jboss.org
Author: apodhrad
Date: 2012-10-03 12:00:34 -0400 (Wed, 03 Oct 2012)
New Revision: 44250
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/gef/SWTBotGefFigure.java
Log:
Added computation for absolute position of a figure
Modified: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/gef/SWTBotGefFigure.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/gef/SWTBotGefFigure.java 2012-10-03 15:46:42 UTC (rev 44249)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/gef/SWTBotGefFigure.java 2012-10-03 16:00:34 UTC (rev 44250)
@@ -43,6 +43,15 @@
return getBounds(this.getFigure());
}
+ /**
+ * Return absolute figures bounds
+ */
+ public Rectangle getAbsoluteBounds() {
+ Rectangle rectangle = getBounds();
+ figure.translateToAbsolute(rectangle);
+ return rectangle;
+ }
+
private Rectangle getBounds(IFigure figure) {
final Rectangle bounds = figure.getBounds().getCopy();
return bounds;
@@ -128,7 +137,6 @@
throw new WidgetNotFoundException("Widget is not Label type");
}
-
private void getSubFigures(IFigure figure, List<IFigure> figures) {
@SuppressWarnings("unchecked")
List<IFigure> children = (List<IFigure>) figure.getChildren();
@@ -147,8 +155,7 @@
*/
public Point getCenter() {
Rectangle bounds = getBounds();
- return new Point(bounds.x + bounds.width / 2, bounds.y + bounds.height
- / 2);
+ return new Point(bounds.x + bounds.width / 2, bounds.y + bounds.height / 2);
}
}
12 years, 2 months
JBoss Tools SVN: r44249 - trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests.
by jbosstools-commits@lists.jboss.org
Author: ldimaggio
Date: 2012-10-03 11:46:42 -0400 (Wed, 03 Oct 2012)
New Revision: 44249
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java
Log:
Still debugging edit test on Jenkins - is the editor not active?
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java 2012-10-03 15:26:41 UTC (rev 44248)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java 2012-10-03 15:46:42 UTC (rev 44249)
@@ -122,6 +122,10 @@
@Test
public void listeners() {
+
+ SWTBotEditor editor = getEditor();
+ log.error("Listeners Editor is active = " + editor.isActive());
+
String service = "aaa";
addService(service);
List<String> listenerList = getAvailableListeners(service);
@@ -169,8 +173,12 @@
log.error("actions - cannot add a service");
e.printStackTrace();
SWTBotEditor editor = getEditor();
- log.error("Editor is active = " + editor.isActive());
- org.jboss.tools.ui.bot.ext.SWTUtilExt.displayAllBotWidgets(editor.bot());
+ log.error("Actions Editor is active = " + editor.isActive());
+// org.jboss.tools.ui.bot.ext.SWTUtilExt.displayAllBotWidgets(editor.bot());
+ SWTBotShell [] theShells = editor.bot().shells();
+ for (SWTBotShell s : theShells) {
+ log.error("DEBUG - the shell is: " + s.getText());
+ }
bot.sleep(30000l);
addService(service);
}
12 years, 2 months
JBoss Tools SVN: r44248 - trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests.
by jbosstools-commits@lists.jboss.org
Author: ldimaggio
Date: 2012-10-03 11:26:41 -0400 (Wed, 03 Oct 2012)
New Revision: 44248
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java
Log:
Still debugging adding a service for editing actions.
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java 2012-10-03 15:24:26 UTC (rev 44247)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java 2012-10-03 15:26:41 UTC (rev 44248)
@@ -160,7 +160,21 @@
@Test
public void actions() {
String service = "bbb";
- addService(service);
+
+ /* Add service is failing on Jenkins - ldimaggi */
+ try {
+ addService(service);
+ }
+ catch (Exception e){
+ log.error("actions - cannot add a service");
+ e.printStackTrace();
+ SWTBotEditor editor = getEditor();
+ log.error("Editor is active = " + editor.isActive());
+ org.jboss.tools.ui.bot.ext.SWTUtilExt.displayAllBotWidgets(editor.bot());
+ bot.sleep(30000l);
+ addService(service);
+ }
+
String[] actionPath = new String[] { configFileFull, node_services,
"bbb", "Actions" };
// first create all actions
@@ -252,12 +266,7 @@
}
private void addService(String name) {
- SWTBotEditor editor = getEditor();
-
- bot.sleep(30000l);
- org.jboss.tools.ui.bot.ext.SWTUtilExt.displayAllBotWidgets(editor.bot());
-
-
+ SWTBotEditor editor = getEditor();
SWTBotTreeItem services = SWTEclipseExt.selectTreeLocation(
editor.bot(), configFileFull, node_services);
ContextMenuHelper.prepareTreeItemForContextMenu(editor.bot().tree(),
12 years, 2 months
JBoss Tools SVN: r44247 - trunk/tests/scripts/installation-updates/src/main/groovy.
by jbosstools-commits@lists.jboss.org
Author: psrna
Date: 2012-10-03 11:24:26 -0400 (Wed, 03 Oct 2012)
New Revision: 44247
Modified:
trunk/tests/scripts/installation-updates/src/main/groovy/testInstall.groovy
Log:
Fix installFromCentral to support the jboss.discovery.directory.url parameter
Modified: trunk/tests/scripts/installation-updates/src/main/groovy/testInstall.groovy
===================================================================
--- trunk/tests/scripts/installation-updates/src/main/groovy/testInstall.groovy 2012-10-03 15:22:55 UTC (rev 44246)
+++ trunk/tests/scripts/installation-updates/src/main/groovy/testInstall.groovy 2012-10-03 15:24:26 UTC (rev 44247)
@@ -77,7 +77,7 @@
void installFromCentral(String discoveryUrl, File eclipseHome, String productName) {
println("Installing content from " + discoveryUrl);
String report = "TEST-install-" + new SimpleDateFormat("yyyyMMddh-hmm").format(new Date()) + ".xml";
- runSWTBotInstallRoutine(eclipseHome, productName, "-Djboss.discovery.directory.url" + discoveryUrl, "org.jboss.tools.tests.installation.InstallFromCentralTest");
+ runSWTBotInstallRoutine(eclipseHome, productName, "-Djboss.discovery.directory.url=" + discoveryUrl, "org.jboss.tools.tests.installation.InstallFromCentralTest");
}
// Check for updates
12 years, 2 months
JBoss Tools SVN: r44246 - trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/validation.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-10-03 11:22:55 -0400 (Wed, 03 Oct 2012)
New Revision: 44246
Modified:
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/validation/JaxrsMetamodelValidator.java
Log:
Fixed - JBIDE-12790 - Broken tests after common validation rework
https://issues.jboss.org/browse/JBIDE-12790
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/validation/JaxrsMetamodelValidator.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/validation/JaxrsMetamodelValidator.java 2012-10-03 15:16:39 UTC (rev 44245)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/validation/JaxrsMetamodelValidator.java 2012-10-03 15:22:55 UTC (rev 44246)
@@ -71,6 +71,10 @@
private static final String BUNDLE_NAME = JaxrsMetamodelValidator.class.getPackage().getName() + ".messages";
+ public JaxrsMetamodelValidator() {
+ super.setProblemType(JAXRS_PROBLEM_TYPE);
+ }
+
/*
* (non-Javadoc)
* @see org.jboss.tools.jst.web.kb.validation.IValidator#isEnabled(org.eclipse.core.resources.IProject)
12 years, 2 months
JBoss Tools SVN: r44245 - trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-10-03 11:16:39 -0400 (Wed, 03 Oct 2012)
New Revision: 44245
Modified:
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsPreferencesMessages.java
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsValidatorConfigurationBlockDescriptionProvider.java
Log:
Fixed - JBIDE-12762 - NLS unused messages in Jaxrs validator
https://issues.jboss.org/browse/JBIDE-12762
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsPreferencesMessages.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsPreferencesMessages.java 2012-10-03 15:10:18 UTC (rev 44244)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsPreferencesMessages.java 2012-10-03 15:16:39 UTC (rev 44245)
@@ -33,6 +33,8 @@
public static String JaxrsValidatorConfigurationBlock_section_applications ;
public static String JaxrsValidatorConfigurationBlock_pb_applicationNoOccurrenceFound_label;
public static String JaxrsValidatorConfigurationBlock_pb_applicationTooManyOccurrencesFound_label;
+ public static String JaxrsValidatorConfigurationBlock_pb_applicationMissingApplicationPathAnnotation_label;
+ public static String JaxrsValidatorConfigurationBlock_pb_applicationInvalidTypeHierarchy_label;
// Section HTTP Method
public static String JaxrsValidatorConfigurationBlock_section_httpMethods;
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsValidatorConfigurationBlockDescriptionProvider.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsValidatorConfigurationBlockDescriptionProvider.java 2012-10-03 15:10:18 UTC (rev 44244)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/preferences/JaxrsValidatorConfigurationBlockDescriptionProvider.java 2012-10-03 15:16:39 UTC (rev 44245)
@@ -38,7 +38,9 @@
JaxrsPreferencesMessages.JaxrsValidatorConfigurationBlock_section_applications,
new String[][]{
{JaxrsPreferences.APPLICATION_NO_OCCURRENCE_FOUND, JaxrsPreferencesMessages.JaxrsValidatorConfigurationBlock_pb_applicationNoOccurrenceFound_label},
- {JaxrsPreferences.APPLICATION_TOO_MANY_OCCURRENCES, JaxrsPreferencesMessages.JaxrsValidatorConfigurationBlock_pb_applicationTooManyOccurrencesFound_label}
+ {JaxrsPreferences.APPLICATION_TOO_MANY_OCCURRENCES, JaxrsPreferencesMessages.JaxrsValidatorConfigurationBlock_pb_applicationTooManyOccurrencesFound_label},
+ {JaxrsPreferences.JAVA_APPLICATION_MISSING_APPLICATION_PATH_ANNOTATION, JaxrsPreferencesMessages.JaxrsValidatorConfigurationBlock_pb_applicationMissingApplicationPathAnnotation_label},
+ {JaxrsPreferences.JAVA_APPLICATION_INVALID_TYPE_HIERARCHY, JaxrsPreferencesMessages.JaxrsValidatorConfigurationBlock_pb_applicationInvalidTypeHierarchy_label}
},
JBossJaxrsCorePlugin.PLUGIN_ID
);
12 years, 2 months
JBoss Tools SVN: r44244 - trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-10-03 11:10:18 -0400 (Wed, 03 Oct 2012)
New Revision: 44244
Modified:
trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/ConvertToMavenDependencyWizard.java
Log:
JBIDE-12529 Use refactoring API to delete converted dependencies
Modified: trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/ConvertToMavenDependencyWizard.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/ConvertToMavenDependencyWizard.java 2012-10-03 15:04:21 UTC (rev 44243)
+++ trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/ConvertToMavenDependencyWizard.java 2012-10-03 15:10:18 UTC (rev 44244)
@@ -15,9 +15,13 @@
import org.apache.maven.model.Dependency;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.jdt.internal.corext.refactoring.reorg.JavaDeleteProcessor;
+import org.eclipse.jdt.internal.ui.refactoring.reorg.DeleteUserInterfaceManager;
+import org.eclipse.jdt.ui.refactoring.RefactoringSaveHelper;
import org.eclipse.jface.wizard.Wizard;
-import org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation;
-import org.eclipse.ltk.ui.refactoring.resource.DeleteResourcesWizard;
+import org.eclipse.ltk.core.refactoring.Refactoring;
+import org.eclipse.ltk.core.refactoring.participants.DeleteRefactoring;
import org.jboss.tools.maven.conversion.core.ProjectDependency;
/**
@@ -37,7 +41,6 @@
private List<Dependency> dependencies;
public ConvertToMavenDependencyWizard(IProject project, List<ProjectDependency> projectDependencies) {
- System.err.println("New wizard");
this.project = project;
this.entries = projectDependencies;
String title = "Convert to Maven ";
@@ -72,12 +75,11 @@
//Only delete jars that are directly under a project's hierarchy
IResource[] resourcesToDelete = identificationPage.getResourcesToDelete();
if (resourcesToDelete != null && resourcesToDelete.length > 0) {
- DeleteResourcesWizard wizard = new DeleteResourcesWizard(resourcesToDelete);
try {
- RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard);
- op.run(getShell(), "Delete project relative jars");
- } catch(InterruptedException e) {
- // ignored
+ Refactoring refactoring= new DeleteRefactoring(new JavaDeleteProcessor(resourcesToDelete));
+ DeleteUserInterfaceManager.getDefault().getStarter(refactoring).activate(refactoring, getShell(), RefactoringSaveHelper.SAVE_NOTHING);
+ } catch (CoreException e) {
+ e.printStackTrace();
}
}
}
12 years, 2 months
JBoss Tools SVN: r44243 - in trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35: console and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: jpeterka
Date: 2012-10-03 11:04:21 -0400 (Wed, 03 Oct 2012)
New Revision: 44243
Added:
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/console/
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/console/jpatest35.launch
Modified:
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/.classpath
Log:
Hibernate console added to HB ui bot example project and project classpath is fixed
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/.classpath
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/.classpath 2012-10-03 14:44:50 UTC (rev 44242)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/.classpath 2012-10-03 15:04:21 UTC (rev 44243)
@@ -14,5 +14,8 @@
<classpathentry kind="lib" path="/hibernatelib/hibernate35/jta-1.1.jar"/>
<classpathentry kind="lib" path="/hibernatelib/hibernate35/slf4j-api-1.5.8.jar"/>
<classpathentry kind="lib" path="/hibernatelib/jpa2/javax.persistence_2.0.0.jar"/>
+ <classpathentry kind="lib" path="/hibernatelib/connector/hsqldb.jar"/>
+ <classpathentry kind="lib" path="/hibernatelib/connector/mysql-connector-java-5.1.13-bin.jar"/>
+ <classpathentry kind="lib" path="/hibernatelib/connector/postgresql-8.4-702.jdbc4.jar"/>
<classpathentry kind="output" path="build/classes"/>
</classpath>
Added: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/console/jpatest35.launch
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/console/jpatest35.launch (rev 0)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/console/jpatest35.launch 2012-10-03 15:04:21 UTC (rev 44243)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.hibernate.eclipse.launch.ConsoleConfigurationLaunchConfigurationType">
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
+<listEntry value="jpatest35"/>
+</listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
+<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="true"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="jpatest35"/>
+<stringAttribute key="org.hibernate.eclipse.launch.CONFIGURATION_FACTORY" value="JPA"/>
+<listAttribute key="org.hibernate.eclipse.launch.FILE_MAPPINGS"/>
+<stringAttribute key="org.hibernate.eclipse.launch.HIBERNATE_VERSION" value="3.5"/>
+<stringAttribute key="org.hibernate.eclipse.launch.USE_JPA_PROJECT_PROFILE" value="true"/>
+</launchConfiguration>
Property changes on: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/jpatest35/console/jpatest35.launch
___________________________________________________________________
Added: svn:mime-type
+ text/plain
12 years, 2 months
JBoss Tools SVN: r44242 - trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests.
by jbosstools-commits@lists.jboss.org
Author: ldimaggio
Date: 2012-10-03 10:44:50 -0400 (Wed, 03 Oct 2012)
New Revision: 44242
Modified:
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java
Log:
Test cannot find the services tree - this is failing on Jenkins - working locally. Adding call to org.jboss.tools.ui.bot.ext.SWTUtilExt.displayAllBotWidgets(editor.bot()); and a sleep statement.
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java 2012-10-03 14:36:24 UTC (rev 44241)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/src/org/jboss/tools/esb/ui/bot/tests/Editing.java 2012-10-03 14:44:50 UTC (rev 44242)
@@ -253,6 +253,11 @@
private void addService(String name) {
SWTBotEditor editor = getEditor();
+
+ bot.sleep(30000l);
+ org.jboss.tools.ui.bot.ext.SWTUtilExt.displayAllBotWidgets(editor.bot());
+
+
SWTBotTreeItem services = SWTEclipseExt.selectTreeLocation(
editor.bot(), configFileFull, node_services);
ContextMenuHelper.prepareTreeItemForContextMenu(editor.bot().tree(),
12 years, 2 months
JBoss Tools SVN: r44241 - trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-10-03 10:36:24 -0400 (Wed, 03 Oct 2012)
New Revision: 44241
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateApplicationAction.java
Log:
Removing wrong method comment
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateApplicationAction.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateApplicationAction.java 2012-10-03 14:14:48 UTC (rev 44240)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateApplicationAction.java 2012-10-03 14:36:24 UTC (rev 44241)
@@ -32,11 +32,6 @@
setImageDescriptor(OpenShiftImages.QUERY_NEW);
}
- /**
- * Operation called when the user clicks on 'Show In>Remote Console'. If no
- * Console/Worker existed, a new one is created, otherwise, it is displayed.
- * {@inheritDoc}
- */
@Override
public void run() {
if (selection != null && selection instanceof ITreeSelection) {
12 years, 2 months