Author: snjeza
Date: 2011-08-24 20:55:29 -0400 (Wed, 24 Aug 2011)
New Revision: 34274
Modified:
trunk/runtime/plugins/org.jboss.tools.runtime.as.detector/src/org/jboss/tools/runtime/handlers/JBossASHandler.java
Log:
JBIDE-9381 JBoss runtime detector does not detect SOA 5.2 version correctly
Modified:
trunk/runtime/plugins/org.jboss.tools.runtime.as.detector/src/org/jboss/tools/runtime/handlers/JBossASHandler.java
===================================================================
---
trunk/runtime/plugins/org.jboss.tools.runtime.as.detector/src/org/jboss/tools/runtime/handlers/JBossASHandler.java 2011-08-25
00:51:51 UTC (rev 34273)
+++
trunk/runtime/plugins/org.jboss.tools.runtime.as.detector/src/org/jboss/tools/runtime/handlers/JBossASHandler.java 2011-08-25
00:55:29 UTC (rev 34274)
@@ -165,7 +165,10 @@
} else if ("5.1".equals(version)) { //$NON-NLS-1$
// FIXME - this needs to be changed when adding a new runtime type for JBoss EAP 5.1
index = 7;
- }
+ } else if ("5.2".equals(version)) { //$NON-NLS-1$
+ // SOA-P 5.2
+ index = 7;
+ }
}
return index;
}
Show replies by date