/hg/icedtea: Drop patches/bytebuffer-compact.patch

omajid at icedtea.classpath.org omajid at icedtea.classpath.org
Thu Apr 21 17:12:26 PDT 2011


changeset 0f9261320112 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=0f9261320112
author: Omair Majid <omajid at redhat.com>
date: Thu Apr 21 20:12:07 2011 -0400

	Drop patches/bytebuffer-compact.patch

	The patch only contained stylistic changes. The original bug
	addressed by the patch, 6593946: (bf) X-Buffer.compact() does not
	discard mark as specified, was fixed upstream a while back.


diffstat:

 ChangeLog                                |   6 +++
 Makefile.am                              |   1 -
 patches/icedtea-bytebuffer-compact.patch |  53 --------------------------------
 3 files changed, 6 insertions(+), 54 deletions(-)

diffs (82 lines):

diff -r bf3fe6f6ddf4 -r 0f9261320112 ChangeLog
--- a/ChangeLog	Thu Apr 21 13:20:10 2011 -0400
+++ b/ChangeLog	Thu Apr 21 20:12:07 2011 -0400
@@ -1,3 +1,9 @@
+2011-04-21  Omair Majid  <omajid at redhat.com>
+
+	* patches/bytebuffer-compact.patch: Drop patch. It only contained
+	stylistic changes.
+	* Makefile.am: Do not apply dropped patch.
+
 2011-04-21  Omair Majid  <omajid at redhat.com>
 
 	* patches/cacao/ignore-tests.patch: Update to apply on new sources.
diff -r bf3fe6f6ddf4 -r 0f9261320112 Makefile.am
--- a/Makefile.am	Thu Apr 21 13:20:10 2011 -0400
+++ b/Makefile.am	Thu Apr 21 20:12:07 2011 -0400
@@ -242,7 +242,6 @@
 	patches/hotspot/$(HSBUILD)/icedtea-headers.patch \
 	patches/icedtea-gcc-suffix.patch \
 	patches/hotspot/$(HSBUILD)/icedtea-gcc-suffix.patch \
-	patches/icedtea-bytebuffer-compact.patch \
 	patches/hotspot/$(HSBUILD)/icedtea-memory-limits.patch \
 	patches/icedtea-sunsrc.patch \
 	patches/icedtea-libraries.patch \
diff -r bf3fe6f6ddf4 -r 0f9261320112 patches/icedtea-bytebuffer-compact.patch
--- a/patches/icedtea-bytebuffer-compact.patch	Thu Apr 21 13:20:10 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,54 +0,0 @@
---- ../openjdkb23/openjdk.old/jdk/src/share/classes/java/nio/Buffer.java	2007-10-30 04:36:08.000000000 -0400
-+++ openjdk/jdk/src/share/classes/java/nio/Buffer.java	2007-11-13 13:33:28.000000000 -0500
-@@ -234,8 +234,8 @@
-         if ((newPosition > limit) || (newPosition < 0))
-             throw new IllegalArgumentException();
-         position = newPosition;
--        if (mark > position) mark = -1;
--        return this;
-+        if (mark > position) discardMark();
-+	return this;
-     }
- 
-     /**
-@@ -266,8 +266,8 @@
-             throw new IllegalArgumentException();
-         limit = newLimit;
-         if (position > limit) position = limit;
--        if (mark > limit) mark = -1;
--        return this;
-+        if (mark > position) discardMark();
-+	return this;
-     }
- 
-     /**
-@@ -319,8 +319,8 @@
-     public final Buffer clear() {
-         position = 0;
-         limit = capacity;
--        mark = -1;
--        return this;
-+        discardMark();
-+	return this;
-     }
- 
-     /**
-@@ -347,7 +347,7 @@
-     public final Buffer flip() {
-         limit = position;
-         position = 0;
--        mark = -1;
-+        discardMark();
-         return this;
-     }
- 
-@@ -368,7 +368,7 @@
-      */
-     public final Buffer rewind() {
-         position = 0;
--        mark = -1;
-+        discardMark();
-         return this;
-     }
- 
-



More information about the distro-pkg-dev mailing list