Author: bbrodt
Date: 2011-03-07 13:04:48 -0500 (Mon, 07 Mar 2011)
New Revision: 29577
Modified:
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java
Log:
https://issues.jboss.org/browse/JBIDE-6617
BPELZippedPublisherUtil didn't define the correct override for getOutputFilePath()
Modified:
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java
===================================================================
---
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java 2011-03-07
17:43:36 UTC (rev 29576)
+++
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java 2011-03-07
18:04:48 UTC (rev 29577)
@@ -300,6 +300,14 @@
public BPELZippedPublisherUtil(IPath deployPath) {
this.deployPath = deployPath;
}
+
+ @Override
+ //
https://issues.jboss.org/browse/JBIDE-6617
+ // This was probably a typo - the actual override should have an IModule[] arg
+ public IPath getOutputFilePath(IModule[] module) {
+ return getOutputFilePath();
+ }
+
public IPath getOutputFilePath() {
return deployPath;
}