You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2014/04/24 11:42:30 UTC

svn commit: r1589648 - in /commons/proper/bcel/trunk: README.txt RELEASE-NOTES.txt doap_bcel.rdf src/changes/changes.xml src/main/java/org/apache/bcel/util/InstructionFinder.java

Author: ebourg
Date: Thu Apr 24 09:42:30 2014
New Revision: 1589648

URL: http://svn.apache.org/r1589648
Log:
Replaced Bugzilla with JIRA

Modified:
    commons/proper/bcel/trunk/README.txt
    commons/proper/bcel/trunk/RELEASE-NOTES.txt
    commons/proper/bcel/trunk/doap_bcel.rdf
    commons/proper/bcel/trunk/src/changes/changes.xml
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/InstructionFinder.java

Modified: commons/proper/bcel/trunk/README.txt
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/README.txt?rev=1589648&r1=1589647&r2=1589648&view=diff
==============================================================================
--- commons/proper/bcel/trunk/README.txt (original)
+++ commons/proper/bcel/trunk/README.txt Thu Apr 24 09:42:30 2014
@@ -33,4 +33,4 @@ Contact
 
  or enter the issue into the BCEL bug database
 
-  http://issues.apache.org/bugzilla/enter_bug.cgi?product=BCEL
+  https://issues.apache.org/jira/browse/BCEL

Modified: commons/proper/bcel/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/RELEASE-NOTES.txt?rev=1589648&r1=1589647&r2=1589648&view=diff
==============================================================================
--- commons/proper/bcel/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/bcel/trunk/RELEASE-NOTES.txt Thu Apr 24 09:42:30 2014
@@ -20,13 +20,13 @@ public org.apache.bcel.util.ClassVector 
 Bug fixes from 5.2
 ------------------
 
-32664	Examples with enum breaks Gump (JDK1.5)
+BCEL-53  - Examples with enum breaks Gump (JDK1.5)
 
 
 Enhancements from 5.2
 ---------------------
 
-32945	Wrap JavaClass repository class (map values) with...
+BCEL-55	 - Wrap JavaClass repository class (map values) with SoftReferences
 BCEL-163 - Incorporate patch file from Findbugs
 
 
@@ -35,9 +35,9 @@ Feedback
 Open source works best when you give feedback:
 http://commons.apache.org/bcel
 
-Please direct all bug reports to Bugzilla
-http://issues.apache.org/bugzilla/buglist.cgi?product=BCEL
+Please direct all bug reports to JIRA:
+https://issues.apache.org/jira/browse/BCEL
 
-Or subscribe to the bcel-user mailing list
+Or subscribe to the commons-user mailing list
 
 The BCEL Team

Modified: commons/proper/bcel/trunk/doap_bcel.rdf
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/doap_bcel.rdf?rev=1589648&r1=1589647&r2=1589648&view=diff
==============================================================================
--- commons/proper/bcel/trunk/doap_bcel.rdf (original)
+++ commons/proper/bcel/trunk/doap_bcel.rdf Thu Apr 24 09:42:30 2014
@@ -26,7 +26,7 @@
     <!-- Look at http://projects.apache.org/categories.html -->
     <category rdf:resource="http://projects.apache.org/category/library"/>
     <license rdf:resource="http://usefulinc.com/doap/licenses/asl20"/>
-    <bug-database rdf:resource="http://issues.apache.org/bugzilla/buglist.cgi?product=BCEL"/>
+    <bug-database rdf:resource="https://issues.apache.org/jira/browse/BCEL"/>
     <download-page rdf:resource="http://commons.apache.org/bcel/download_bcel.cgi"/>
     <asfext:pmc rdf:resource="http://commons.apache.org/"/>
     <shortdesc xml:lang="en">Bytecode Engineering Library</shortdesc>

Modified: commons/proper/bcel/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/changes/changes.xml?rev=1589648&r1=1589647&r2=1589648&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/changes/changes.xml (original)
+++ commons/proper/bcel/trunk/src/changes/changes.xml Thu Apr 24 09:42:30 2014
@@ -65,10 +65,10 @@ The <action> type attribute can be add,u
         <release version="5.3" date="TBA" description="
 TBA
         ">
-            <action issue="Bugzilla 51014" dev="sebb" type="fix">
+            <action issue="BCEL-153" dev="sebb" type="fix">
             Examples not present in source or binary downloads
             </action>
-            <action issue="Bugzilla 52433" dev="sebb" type="fix">
+            <action issue="BCEL-160" dev="sebb" type="fix">
             Why using unstable sort at MethodGen.getLocalVariables() ?
             </action>
         </release>

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/InstructionFinder.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/InstructionFinder.java?rev=1589648&r1=1589647&r2=1589648&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/InstructionFinder.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/InstructionFinder.java Thu Apr 24 09:42:30 2014
@@ -139,7 +139,7 @@ public class InstructionFinder {
      * @return translated regular expression string
      */
     private static String compilePattern( String pattern ) {
-        //Bug: 38787 - Instructions are assumed to be english, to avoid odd Locale issues
+        //Bug: BCEL-77 - Instructions are assumed to be english, to avoid odd Locale issues
         String lower = pattern.toLowerCase(Locale.ENGLISH);
         StringBuilder buf = new StringBuilder();
         int size = pattern.length();