Author: rob.stryker(a)jboss.com
Date: 2012-01-31 23:38:57 -0500 (Tue, 31 Jan 2012)
New Revision: 38353
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java
Log:
blatent stupid error in the utils (getPassword calls getAppId... uhhh)
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java
===================================================================
---
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java 2012-02-01
04:24:24 UTC (rev 38352)
+++
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java 2012-02-01
04:38:57 UTC (rev 38353)
@@ -114,9 +114,8 @@
return wc.save(false, new NullProgressMonitor());
}
- // TODO Must secure this!!!
public static String getExpressPassword(IServerWorkingCopy server ) {
- return getExpressApplicationId(server.getOriginal());
+ return getExpressPassword(server.getOriginal());
}
public static String getExpressPassword(IServer server ) {
Show replies by date