taverna-wsdl-activity-ui/src/main/java/org/apache/taverna/activities/wsdl/views/AbstractXMLSplitterActionView.java [115:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					try {
						descriptor = splitterAction.getTypeDescriptors().get(port.getName());
					} catch (UnknownOperationException | IOException | ParserConfigurationException
							| WSDLException | SAXException | JDOMException e) {
						logger.warn("Could not find type descriptors for " + getActivity(), e);
					}
				}
				if (descriptor == null) {
					html.append(describePort(port));
				} else {
					html.append(describePort(port, descriptor));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



taverna-wsdl-activity-ui/src/main/java/org/apache/taverna/activities/wsdl/views/AbstractXMLSplitterActionView.java [136:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					try {
						descriptor = splitterAction.getTypeDescriptors().get(port.getName());
					} catch (UnknownOperationException | IOException | ParserConfigurationException
							| WSDLException | SAXException | JDOMException e) {
						logger.warn("Could not find type descriptors for " + getActivity(), e);
					}
				}
				if (descriptor == null) {
					html.append(describePort(port));
				} else {
					html.append(describePort(port, descriptor));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



