[PATCH] Typo in JetspeedProfilerService enables useGroupMerge -------------------------------------------------------------
Key: JS1-539 URL: http://issues.apache.org/jira/browse/JS1-539 Project: Jetspeed Type: Bug Components: Profiler Versions: 1.6-dev Reporter: Bjorn Vidar Remme An 'if' statment in the JetspeedProfilerService uses a '=' instead of '=='. This enables the useGroupMerge when the statement is executed. Patch information: Index: services/profiler/JetspeedProfilerService.java =================================================================== RCS file: /home/cvspublic/jakarta-jetspeed/src/java/org/apache/jetspeed/services/profiler/JetspeedProfilerService.java,v retrieving revision 1.59 diff -u -r1.59 JetspeedProfilerService.java --- services/profiler/JetspeedProfilerService.java 21 Jan 2005 23:50:33 -0000 1.59 +++ services/profiler/JetspeedProfilerService.java 11 Feb 2005 12:19:01 -0000 @@ -310,7 +310,7 @@ { profile = getRoleProfile(rundata, cm); } - else if (useGroupMerge = true) + else if (useGroupMerge == true) { profile = getGroupProfile(rundata, cm); } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]