modules/enterprise/server/plugins/ant-bundle/src/main/java/org/rhq/enterprise/server/plugins/ant/AntBundleServerPluginComponent.java | 1 + 1 file changed, 1 insertion(+)
New commits: commit 8cc631d6648b6287a209378f860c34d6cd7064d9 Author: John Mazzitelli mazz@redhat.com Date: Thu Apr 29 13:45:24 2010 -0400
no need to keep walking the zip file when we found the recipe file we wanted
diff --git a/modules/enterprise/server/plugins/ant-bundle/src/main/java/org/rhq/enterprise/server/plugins/ant/AntBundleServerPluginComponent.java b/modules/enterprise/server/plugins/ant-bundle/src/main/java/org/rhq/enterprise/server/plugins/ant/AntBundleServerPluginComponent.java index 4c155bf..c0f1b40 100644 --- a/modules/enterprise/server/plugins/ant-bundle/src/main/java/org/rhq/enterprise/server/plugins/ant/AntBundleServerPluginComponent.java +++ b/modules/enterprise/server/plugins/ant-bundle/src/main/java/org/rhq/enterprise/server/plugins/ant/AntBundleServerPluginComponent.java @@ -175,6 +175,7 @@ public class AntBundleServerPluginComponent implements ServerPluginComponent, Bu } catch (Throwable t) { this.results = null; } + return false; // whether we parsed it or not, we found the file we are looking for so stop walking } return true; }
rhq-commits@lists.fedorahosted.org