Skip to content
Snippets Groups Projects
Commit c5707271 authored by Simon Spinner's avatar Simon Spinner
Browse files

Fix bug in JMS component detection.

parent a60c9319
No related branches found
No related tags found
No related merge requests found
......@@ -859,7 +859,7 @@ public class ModelExtractionService extends AgentController implements Service<M
}
private boolean isJMSComponent(String componentName) {
return "javax.jms.Queue".equals(componentName) || "javax.jms.Topic".equals(componentName);
return toName("javax.jms.Queue").equals(componentName) || toName("javax.jms.Topic").equals(componentName);
}
private String getCompositeComponentName(ComponentRecord crec) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment