ohair [Tue, 30 Nov 2010 18:10:20 -0800] rev 7403
Merge
ohair [Tue, 30 Nov 2010 18:07:18 -0800] rev 7402
6987107: Add variable to add to but not modify non-fcs version string
Reviewed-by: jcoomes, dholmes, andrew, kvn
coleenp [Mon, 29 Nov 2010 15:43:36 -0500] rev 7401
6780143: hs203t003 hits SIGSEGV/EXCEPTION_ACCESS_VIOLATION with -XX:+UseCompressedOops
Summary: Using r12 as temporary register around call_VM trashes heapbase becausecall_VM doesn't always return immediately to following code (eg forward_exception, popframe and early return support).
Reviewed-by: never, kvn
tonyp [Thu, 02 Dec 2010 13:20:39 -0500] rev 7400
7003860: G1: assert(_cur_alloc_region == NULL || !expect_null_cur_alloc_region) fails
Summary: Wrong assumption about expecting the current alloc region expected to be NULL in expand_and_allocate().
Reviewed-by: brutisso, ysr
johnc [Wed, 01 Dec 2010 17:34:02 -0800] rev 7399
6983204: G1: Nightly test nsk/regression/b4958615 failing with +ExplicitGCInvokesConcurrent
Summary: Enable reference discovery during concurrent marking by setting the reference processor field of the concurrent marking closure. Keep reference objects on the discovered reference lists alive during incremental evacuation pauses until they are processed at the end of concurrent marking.
Reviewed-by: ysr, tonyp
tonyp [Tue, 24 Aug 2010 17:24:33 -0400] rev 7398
6974966: G1: unnecessary direct-to-old allocations
Summary: This change revamps the slow allocation path of G1. Improvements include the following: a) Allocations directly to old regions are now totally banned. G1 now only allows allocations out of young regions (with the only exception being humongous regions). b) The thread that allocates a new region (which is now guaranteed to be young) does not dirty all its cards. Each thread that successfully allocates out of a young region is now responsible for dirtying the cards that corresponding to the "block" that just got allocated. c) allocate_new_tlab() and mem_allocate() are now implemented differently and TLAB allocations are only done by allocate_new_tlab(). d) If a thread schedules an evacuation pause in order to satisfy an allocation request, it will perform the allocation at the end of the safepoint so that the thread that initiated the GC also gets "first pick" of any space made available by the GC. e) If a thread is unable to allocate a humongous object it will schedule an evacuation pause in case it reclaims enough regions so that the humongous allocation can be satisfied aftewards. f) The G1 policy is more careful to set the young list target length to be the survivor number +1. g) Lots of code tidy up, removal, refactoring to make future changes easier.
Reviewed-by: johnc, ysr
stefank [Tue, 23 Nov 2010 13:22:55 -0800] rev 7397
6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
Reviewed-by: coleenp, kvn, kamg
coleenp [Tue, 23 Nov 2010 15:01:43 -0500] rev 7396
Merge
twisti [Tue, 23 Nov 2010 04:33:42 -0800] rev 7395
7002129: Zero and Shark fixes, 3rd
Summary: 6970683 and 6953144 introduced changes that need to be implemented for Zero and Shark.
Reviewed-by: twisti
Contributed-by: Gary Benson <gbenson@redhat.com>
coleenp [Fri, 19 Nov 2010 23:46:06 -0500] rev 7394
Merge
poonam [Fri, 19 Nov 2010 03:41:50 -0800] rev 7393
6837842: JNI_CreateJavaVM crashes under impersonation
Reviewed-by: acorn, dholmes
zgu [Thu, 18 Nov 2010 14:37:46 -0500] rev 7392
6751923: JNDI wake up when clock_settime() is called
Summary: Ported Chris Phillips' patch from jdk5 to jdk7
Reviewed-by: chrisphi, coleenp
iveresov [Fri, 19 Nov 2010 17:01:34 -0800] rev 7391
Merge
kvn [Thu, 18 Nov 2010 09:52:48 -0800] rev 7390
7000491: assert(false) failed: should be optimized out in SharedRuntime::g1_wb_pre
Summary: Wrong value type is used for NULL store when clearing the detail message of the preallocated exception object.
Reviewed-by: never, iveresov
iveresov [Tue, 16 Nov 2010 15:57:16 -0800] rev 7389
7000349: Tiered reacts incorrectly to C1 compilation failures
Summary: Fix policy reaction to C1 comilation failures, make C1 properly report errors.
Reviewed-by: kvn
kvn [Fri, 12 Nov 2010 09:51:43 -0800] rev 7388
6999491: non-zero COOPs are used when they should not
Summary: HeapBaseMinAddress should be used only for a default heap size calculation.
Reviewed-by: iveresov, jcoomes, dholmes
jmasa [Fri, 19 Nov 2010 13:19:49 -0800] rev 7387
Merge
johnc [Tue, 16 Nov 2010 16:12:28 -0800] rev 7386
Merge
johnc [Tue, 16 Nov 2010 14:07:33 -0800] rev 7385
6978187: G1: assert(ParallelGCThreads> 1 || n_yielded() == _hrrs->occupied()) strikes again
Summary: An evacuation failure while copying the roots caused an object, A, to be forwarded to itself. During the subsequent RSet updating a reference to A was processed causing the reference to be added to the RSet of A's heap region. As a result of adding to the remembered set we ran into the issue described in 6930581 - the sparse table expanded and the RSet scanning code walked the cards in one instance of RHashTable (_cur) while the occupied() counts the cards in the expanded table (_next).
Reviewed-by: tonyp, iveresov
ysr [Tue, 16 Nov 2010 13:58:48 -0800] rev 7384
7000578: CMS: assert(SafepointSynchronize::is_at_safepoint()) failed: Else races are possible
Summary: Weakened assert in onj_is_alive() to allow its use at initialization time when is_at_safepoint() normally reports false; added some related asserts to check order of is_init_completed() after Universe::is_fully_initialized().
Reviewed-by: jcoomes
zgu [Wed, 17 Nov 2010 09:21:51 -0500] rev 7383
Merge
zgu [Fri, 12 Nov 2010 09:37:13 -0500] rev 7382
Merge
kamg [Fri, 05 Nov 2010 09:32:08 -0400] rev 7381
6981737: The java.vm.specification.version property is 1.0, seems like it should be 2.0
Summary: Change property value to 1.<major_version> for major_version >= 7
Reviewed-by: dholmes, acorn
kamg [Wed, 27 Oct 2010 12:53:36 -0400] rev 7380
6865028: Illegal instructions passing verification prior to 'invokespecial Object.<init>'
Summary: Update verifier to conform to spec re: reference vs. 'Object' types
Reviewed-by: dholmes, coleenp
jmasa [Mon, 15 Nov 2010 16:25:14 -0800] rev 7379
Merge
ysr [Thu, 11 Nov 2010 10:42:43 -0800] rev 7378
6998802: ScavengeALot: assert(!gch->incremental_collection_failed()) failed: Twice in a row
Summary: Weaken assert by excluding scavenges resulting from -XX:+ScavengeALot stress-testing option.
Reviewed-by: jmasa, tonyp
ysr [Tue, 09 Nov 2010 10:47:20 -0800] rev 7377
6996613: CompactibleFreeListSpace::print should call CompactibleFreeListSpace::print_on, not Space::print_on
Reviewed-by: tonyp
ysr [Fri, 05 Nov 2010 13:20:37 -0700] rev 7376
6997298: fatal error: must own lock CMS_markBitMap_lock during heap dump
Summary: Since we are at a stop-world pause, the existing CMS-phase checks are sufficient for safety, and the locking check can be safely elided. Elaborated documentation comment to the case where class unloading and verification are disabled, and the query happens when we aren't in the sweeping phase, where the answer "false" would be (almost everywhere) too pessimistic.
Reviewed-by: jmasa, johnc, tonyp
trims [Thu, 16 Dec 2010 20:32:43 -0800] rev 7375
Merge
trims [Fri, 10 Dec 2010 15:46:59 -0800] rev 7374
Merge
trims [Fri, 03 Dec 2010 09:44:09 -0800] rev 7373
Added tag hs20-b03 for changeset a683e80b9ca8
cl [Thu, 16 Dec 2010 18:17:52 -0800] rev 7372
Added tag jdk7-b122 for changeset c601f7238c18
igor [Tue, 21 Dec 2010 14:51:50 -0800] rev 7371
Merge
herrick [Mon, 20 Dec 2010 13:13:52 -0500] rev 7370
Merge
herrick [Sun, 12 Dec 2010 22:56:48 -0500] rev 7369
Merge
igor [Wed, 08 Dec 2010 01:15:17 -0800] rev 7368
Merge
igor [Mon, 06 Dec 2010 00:43:27 -0800] rev 7367
Merge
jqzuo [Tue, 21 Dec 2010 11:43:26 -0500] rev 7366
Merge
jqzuo [Mon, 20 Dec 2010 13:05:23 -0500] rev 7365
Merge
jqzuo [Mon, 13 Dec 2010 11:34:03 -0500] rev 7364
Merge
jqzuo [Thu, 09 Dec 2010 16:05:25 -0500] rev 7363
Merge
jqzuo [Wed, 01 Dec 2010 14:35:06 -0500] rev 7362
Merge
ohair [Mon, 20 Dec 2010 08:44:58 -0800] rev 7361
6909331: Add vsvars.sh to the jdk repository (handy cygwin way to get vcvars32.bat run)
Reviewed-by: robilad
ohair [Sat, 18 Dec 2010 18:28:31 -0800] rev 7360
6909026: Change GNU make version requirement to 3.81
Reviewed-by: robilad
ohair [Thu, 16 Dec 2010 19:56:43 -0800] rev 7359
Merge
ohair [Wed, 15 Dec 2010 15:24:51 -0800] rev 7358
Merge
ohair [Mon, 06 Dec 2010 10:37:10 -0800] rev 7357
7001720: copyright templates not rebranded
Reviewed-by: mchung
cl [Thu, 16 Dec 2010 18:17:42 -0800] rev 7356
Added tag jdk7-b122 for changeset aa625a3cd2a3
duke [Wed, 05 Jul 2017 17:29:15 +0200] rev 7355
Added tag jdk7-b122 for changeset 6f09ea1c034f
duke [Wed, 05 Jul 2017 17:29:14 +0200] rev 7354
Merge
duke [Wed, 05 Jul 2017 17:29:12 +0200] rev 7353
Merge
katleman [Thu, 09 Dec 2010 21:25:38 -0800] rev 7352
Added tag jdk7-b121 for changeset 89ced394b320
duke [Wed, 05 Jul 2017 17:29:10 +0200] rev 7351
Merge
katleman [Thu, 09 Dec 2010 21:25:29 -0800] rev 7350
Added tag jdk7-b121 for changeset 1813eb437117
duke [Wed, 05 Jul 2017 17:29:07 +0200] rev 7349
Merge
katleman [Thu, 09 Dec 2010 21:25:29 -0800] rev 7348
Added tag jdk7-b121 for changeset 75d78f95b8eb
duke [Wed, 05 Jul 2017 17:29:05 +0200] rev 7347
Merge
katleman [Thu, 09 Dec 2010 21:25:22 -0800] rev 7346
Added tag jdk7-b121 for changeset 5a27cf522774
duke [Wed, 05 Jul 2017 17:29:02 +0200] rev 7345
Merge
katleman [Thu, 09 Dec 2010 21:25:32 -0800] rev 7344
Added tag jdk7-b121 for changeset 4a42e58ee6c3
duke [Wed, 05 Jul 2017 17:29:00 +0200] rev 7343
Merge
katleman [Thu, 09 Dec 2010 21:25:25 -0800] rev 7342
Added tag jdk7-b121 for changeset 355804dc2e5e
katleman [Thu, 09 Dec 2010 21:25:18 -0800] rev 7341
Added tag jdk7-b121 for changeset 0961b69bacc0
duke [Wed, 05 Jul 2017 17:28:51 +0200] rev 7340
Added tag jdk7-b121 for changeset 0ce0a2c3a692
duke [Wed, 05 Jul 2017 17:28:51 +0200] rev 7339
Merge
duke [Wed, 05 Jul 2017 17:28:48 +0200] rev 7338
Merge
lana [Mon, 06 Dec 2010 20:35:49 -0800] rev 7337
Merge
jjg [Tue, 30 Nov 2010 09:38:48 -0800] rev 7336
7003477: Paths.isDefaultBootClassPath needs to be public
Reviewed-by: mcimadamore
jjg [Mon, 29 Nov 2010 14:15:36 -0800] rev 7335
6900037: javac should warn if earlier -source is used and bootclasspath not set
Reviewed-by: darcy
jjg [Mon, 29 Nov 2010 10:09:48 -0800] rev 7334
7003006: add option to list directory in deterministic order
Reviewed-by: mcimadamore
jjg [Tue, 23 Nov 2010 15:28:34 -0800] rev 7333
7002346: javap test relies on location of scratch directory
Reviewed-by: ksrini
jjg [Tue, 23 Nov 2010 13:32:29 -0800] rev 7332
6942366: javadoc no longer inherits doc from sourcepath
Reviewed-by: mcimadamore
mcimadamore [Tue, 23 Nov 2010 11:08:43 +0000] rev 7331
6995200: JDK 7 compiler crashes when type-variable is inferred from expected primitive type
Summary: 15.12.2.8 should use boxing when expected type in assignment context is a primitive type
Reviewed-by: jjg
jjg [Thu, 18 Nov 2010 16:13:11 -0800] rev 7330
6999438: remove support for exotic identifiers from JDK 7
Reviewed-by: mcimadamore
jjg [Wed, 17 Nov 2010 15:07:43 -0800] rev 7329
7000973: isBogus needs to be called on the to-be-returned entry, not on the current entry
Reviewed-by: jjg
Contributed-by: jan.lahoda@oracle.com
ohair [Fri, 03 Dec 2010 19:45:34 -0800] rev 7328
Merge
cl [Mon, 22 Nov 2010 14:57:34 -0800] rev 7327
Added tag jdk7-b119 for changeset 2322464ada6f
cl [Thu, 02 Dec 2010 19:04:25 -0800] rev 7326
Added tag jdk7-b120 for changeset 49e5caf5b854
duke [Wed, 05 Jul 2017 17:28:44 +0200] rev 7325
Merge
lana [Mon, 06 Dec 2010 20:33:03 -0800] rev 7324
Merge
lana [Tue, 30 Nov 2010 15:06:45 -0800] rev 7323
Merge
ohair [Tue, 23 Nov 2010 10:04:43 -0800] rev 7322
7002248: Update urls for jaxp and jaxws source downloads
Reviewed-by: darcy
cl [Thu, 02 Dec 2010 19:04:06 -0800] rev 7321
Added tag jdk7-b120 for changeset 0165dcd8285f
duke [Wed, 05 Jul 2017 17:28:40 +0200] rev 7320
Merge
lana [Mon, 06 Dec 2010 20:33:02 -0800] rev 7319
Merge
lana [Tue, 30 Nov 2010 15:06:43 -0800] rev 7318
Merge
ohair [Tue, 23 Nov 2010 10:04:15 -0800] rev 7317
7002248: Update urls for jaxp and jaxws source downloads
Reviewed-by: darcy
cl [Thu, 02 Dec 2010 19:04:05 -0800] rev 7316
Added tag jdk7-b120 for changeset e9aad21cf42e
duke [Wed, 05 Jul 2017 17:28:36 +0200] rev 7315
Merge
ohair [Fri, 03 Dec 2010 19:43:41 -0800] rev 7314
Merge
cl [Mon, 22 Nov 2010 14:57:06 -0800] rev 7313
Added tag jdk7-b119 for changeset d45d466d6759
cl [Thu, 02 Dec 2010 19:03:55 -0800] rev 7312
Added tag jdk7-b120 for changeset a3c4c326e934
duke [Wed, 05 Jul 2017 17:28:33 +0200] rev 7311
Merge
igor [Wed, 08 Dec 2010 00:35:33 -0800] rev 7310
Merge
igor [Tue, 30 Nov 2010 09:57:47 -0800] rev 7309
Merge
ccheung [Tue, 09 Nov 2010 23:05:33 -0800] rev 7308
6992226: Missing windows COMPANY file property settings
Reviewed-by: ohair
igor [Thu, 18 Nov 2010 10:35:46 -0800] rev 7307
Merge
herrick [Fri, 22 Oct 2010 14:14:54 -0400] rev 7306
Merge
lana [Mon, 06 Dec 2010 20:35:04 -0800] rev 7305
Merge
lana [Tue, 30 Nov 2010 15:07:42 -0800] rev 7304
Merge
mduigou [Tue, 30 Nov 2010 13:53:36 -0800] rev 7303
Merge
mduigou [Tue, 30 Nov 2010 13:53:06 -0800] rev 7302
7003544: backout of openjdk changeset 6a391a0ed0da
Reviewed-by: ohair
mduigou [Mon, 29 Nov 2010 10:44:35 -0800] rev 7301
Merge
mduigou [Mon, 29 Nov 2010 10:37:44 -0800] rev 7300
6998016: Incorrect ifdef nesting in sane-gcc-compiler rule
6998014: Use /etc/lsb-release, when available, to detect linux variant and version
Reviewed-by: dholmes, ohair
ksrini [Sat, 27 Nov 2010 07:46:05 -0800] rev 7299
7002986: (pack200) intermittent failures compiling pack200
Reviewed-by: jjg
alanb [Wed, 24 Nov 2010 09:51:31 +0000] rev 7298
6878369: (ch) AsynchronousSocketChannel read/write methods that specify timeouts should not throw IAE
Reviewed-by: forax
ksrini [Tue, 23 Nov 2010 16:52:39 -0800] rev 7297
6452854: Provide a flag to print the java configuration
Reviewed-by: darcy, mchung, sherman, dholmes, mduigou
weijun [Wed, 24 Nov 2010 07:43:06 +0800] rev 7296
7002036: ktab return code changes on a error case
Reviewed-by: valeriep
sherman [Mon, 22 Nov 2010 16:12:23 -0800] rev 7295
7001434: charset name for Cp833 should be x-IBM833.
Summary: changed the name to x-IBM833 in extsbcs
Reviewed-by: alanb
sherman [Mon, 22 Nov 2010 16:03:13 -0800] rev 7294
6858865: Fix for 6728376 causes regression if the size of "data" is 0 and malloc returns Null for 0-length
Summary: don't throw OOME when in or out buffer size is 0 length
Reviewed-by: alanb
mullan [Mon, 22 Nov 2010 11:27:14 -0500] rev 7293
Merge
mullan [Mon, 22 Nov 2010 10:18:33 -0500] rev 7292
Merge
mullan [Mon, 22 Nov 2010 10:16:07 -0500] rev 7291
6995424: Eliminate dependency to a deprecated API com.sun.security.auth.PolicyFile
Reviewed-by: mchung
michaelm [Mon, 22 Nov 2010 16:11:13 +0000] rev 7290
Merge
michaelm [Mon, 22 Nov 2010 16:09:31 +0000] rev 7289
6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
Reviewed-by: alanb, chegar
weijun [Mon, 22 Nov 2010 09:43:58 +0800] rev 7288
6979329: CCacheInputStream fails to read ticket cache files from Kerberos 1.8.1
Reviewed-by: valeriep
xuelei [Sat, 20 Nov 2010 07:00:31 -0800] rev 7287
6903584: Legal notice repair: Three files under jdk/src/share/classes/sun/security/ssl/
Reviewed-by: weijun
valeriep [Fri, 19 Nov 2010 17:05:47 -0800] rev 7286
6720456: New 4150 may have larger blowfish keysizes
Summary: Changed to use TBD value instead of FAIL
Reviewed-by: weijun
valeriep [Fri, 19 Nov 2010 16:59:48 -0800] rev 7285
6203816: Can not run test/java/security/Security/ClassLoaderDeadlock.sh from the command line
Summary: Fixed the script to not delete the provider sub-directory
Reviewed-by: weijun
lancea [Fri, 19 Nov 2010 17:18:31 -0500] rev 7284
7001669: Typo in javadocs for SQLPermission
Reviewed-by: alanb
lancea [Fri, 19 Nov 2010 17:15:03 -0500] rev 7283
7000752: Duplicate entry in RowSetResourceBundles.properties
Reviewed-by: alanb
sherman [Fri, 19 Nov 2010 12:58:32 -0800] rev 7282
6957230: CharsetEncoder.maxBytesPerChar() reports 4 for UTF-8; should be 3
Summary: changged utf-8's CharsetEncoder.maxBytesPerChar to 3
Reviewed-by: alanb
sherman [Fri, 19 Nov 2010 12:55:42 -0800] rev 7281
6989471: compiler warnings building java/zip native code
Summary: remvoed the warning
Reviewed-by: ohair, alanb
mchung [Fri, 19 Nov 2010 10:00:08 -0800] rev 7280
6631046: BufferedInputStream.available() reports negative int on very large inputstream
Reviewed-by: dholmes, alanb, mduigou
michaelm [Fri, 19 Nov 2010 13:35:07 +0000] rev 7279
Merge
michaelm [Fri, 19 Nov 2010 13:30:02 +0000] rev 7278
7001301: com/sun/net/httpserver/bugs/6725892/Test.java failing
Reviewed-by: alanb
dl [Fri, 19 Nov 2010 10:43:24 +0000] rev 7277
6712185: java/util/concurrent/Executors/AutoShutdown.java fails on slow or busy systems
Reviewed-by: chegar, alanb
alanb [Thu, 18 Nov 2010 19:17:43 +0000] rev 7276
Merge
alanb [Thu, 18 Nov 2010 19:16:45 +0000] rev 7275
7000913: (bf) CharBuffer.wrap, slice, position, slice leads to CharBuffer with incorrect offser
Reviewed-by: forax
sherman [Wed, 17 Nov 2010 21:33:16 -0800] rev 7274
6217210: RFE: Support for Cp833 in 1.4.2
Summary: Forward port the Cp833 charset
Reviewed-by: poonam
sherman [Wed, 17 Nov 2010 15:10:42 -0800] rev 7273
6615506: (fmt spec) Date/Time conversion table missing column for 'Z'
Summary: added the column entry back in
Reviewed-by: alanb
michaelm [Wed, 17 Nov 2010 14:32:29 +0000] rev 7272
Merge
michaelm [Wed, 17 Nov 2010 14:29:51 +0000] rev 7271
6725892: Http server stability issues
Reviewed-by: chegar
valeriep [Tue, 16 Nov 2010 11:50:08 -0800] rev 7270
Merge
valeriep [Mon, 15 Nov 2010 14:38:41 -0800] rev 7269
6687725: Internal PKCS5Padding impl should throw IllegalBlockSizeException and not BadPaddingException
Summary: Changed to throw IllegalBlockSizeException when the data length isn't multiples of block size
Reviewed-by: wetmore
valeriep [Mon, 15 Nov 2010 14:32:49 -0800] rev 7268
6848930: JSN security test jce/Global/Cipher/PKCS5Padding cannot thrown expected BadPaddingException
Summary: Disabled CKM_DES_CBC_PAD, CKM_DES3_CBC_PAD, CKM_AES_CBC_PAD mechs by default and use our own internal padding impl.
Reviewed-by: wetmore
alanb [Tue, 16 Nov 2010 15:23:11 +0000] rev 7267
6613829: (docs) Readable.read() ReadOnlyBufferException is not linked
Reviewed-by: chegar, lancea
lana [Tue, 30 Nov 2010 14:51:07 -0800] rev 7266
Merge
rupashka [Tue, 30 Nov 2010 10:35:55 +0300] rev 7265
6988188: The test failed due to Applet thread threw exception
Reviewed-by: alexp
lana [Mon, 29 Nov 2010 10:50:49 -0800] rev 7264
Merge
malenkov [Mon, 29 Nov 2010 21:20:42 +0300] rev 7263
6981576: TitledBorder.getBorder() returns null in java build 1.7.0-ea-b107
Reviewed-by: alexp
malenkov [Mon, 29 Nov 2010 20:38:14 +0300] rev 7262
6999033: Methods BorderFactory.createSoftBevelBorder() don't return SoftBevelBorder instances
Reviewed-by: alexp
alexp [Mon, 29 Nov 2010 16:11:40 +0300] rev 7261
6939227: Nimbus: 6597895 for JCheckBox, JButton and JToggleButton JCK tests
Reviewed-by: rupashka
alexp [Mon, 29 Nov 2010 16:03:14 +0300] rev 7260
6939001: Nimbus: JTabbedPane setBackgroundAt and setForegroundAt have no effect
Reviewed-by: rupashka
alexp [Mon, 29 Nov 2010 16:01:00 +0300] rev 7259
6559589: Memory leak in JScrollPane.updateUI()
Reviewed-by: rupashka
alexp [Thu, 25 Nov 2010 20:25:35 +0300] rev 7258
7002176: JLayer docs build produces warnings
Reviewed-by: dav
alexp [Thu, 25 Nov 2010 20:23:44 +0300] rev 7257
6992847: javax/swing/JLayer/SerializationTest/SerializationTest.java failed in jdk7 just against b114
Reviewed-by: rupashka
amenkov [Thu, 25 Nov 2010 15:58:11 +0300] rev 7256
6999872: java.awt.Window instantiation leads to JVM CRASH on Windows, JDK7b118+ fastdebug
Reviewed-by: igor, dcherepanov
naoto [Wed, 24 Nov 2010 15:26:41 -0800] rev 7255
6807534: CurrencyNameProvider.getDisplayName(String, Locale) doesn't throw IllegalArgumentException
Reviewed-by: okutsu
peytoia [Wed, 24 Nov 2010 14:13:37 +0900] rev 7254
7002398: Apply Corrigendum #8 for Unicode 6.0.0
Reviewed-by: okutsu
naoto [Tue, 23 Nov 2010 13:06:57 -0800] rev 7253
6930106: Testcases with legal notice problems
Reviewed-by: ohair
naoto [Thu, 18 Nov 2010 11:35:31 -0800] rev 7252
7000136: Backward compatibility problem in LocaleNameProvider
Reviewed-by: srl
Contributed-by: y.umaoka@gmail.com
alexp [Thu, 18 Nov 2010 19:52:40 +0300] rev 7251
6997170: Spec for javax.swing.plaf.LayerUI.installUI/uninstallUI() methods contradict behavior of the RI
Reviewed-by: rupashka
alexp [Thu, 18 Nov 2010 13:53:02 +0300] rev 7250
6994419: JLayer.removeAll() behavior doesn't correspond to JLayer.remove() behavior.
Reviewed-by: rupashka
malenkov [Wed, 17 Nov 2010 22:17:01 +0300] rev 7249
6447751: Bean Customizer should be detectable by reflection name alone
Reviewed-by: peterz
naoto [Tue, 16 Nov 2010 10:47:01 -0800] rev 7248
6997999: Remove duplicated entries from ISO language/country code tables
Reviewed-by: okutsu
peytoia [Wed, 17 Nov 2010 01:02:20 +0900] rev 7247
6959267: Support Unicode 6.0.0
Reviewed-by: okutsu
vikram [Mon, 15 Nov 2010 21:51:16 -0800] rev 7246
6939261: Since 1.6.0_18 JMenus at JMenuBar are not selectable by their Mnemonic key anymore
Reviewed-by: peterz
lana [Tue, 30 Nov 2010 14:50:04 -0800] rev 7245
Merge
dav [Tue, 30 Nov 2010 21:54:55 +0300] rev 7244
6783910: (dav) java.awt.Color.brighter()/darker() methods make color opaque
Reviewed-by: art, yan
anthony [Tue, 30 Nov 2010 17:36:56 +0300] rev 7243
6998592: FileDialog tests crashed on solaris
Summary: Override GtkFileDialogPeer.toFront()
Reviewed-by: art, dcherepanov
dcherepanov [Fri, 26 Nov 2010 15:52:55 +0300] rev 7242
6953894: docs build reports warning in java.awt.FileDialog
Reviewed-by: art
anthony [Fri, 26 Nov 2010 15:41:16 +0300] rev 7241
7002856: Provide an accessor for Container.validateUnconditionally()
Summary: Introduce sun.awt.AWTAccessor.getContainerAccessor().validateUnconditionally()
Reviewed-by: art
dcherepanov [Fri, 26 Nov 2010 15:07:53 +0300] rev 7240
6770017: PIT : java/awt/Choice/BlockedWin32Choice/BlockedWin32Choice.java fails on 6u12 b01 pit build
Reviewed-by: art
dcherepanov [Fri, 26 Nov 2010 14:36:42 +0300] rev 7239
6699851: setMaximizedbounds not working properly on dual screen environment
Reviewed-by: art, anthony
dcherepanov [Fri, 26 Nov 2010 11:27:00 +0300] rev 7238
6561353: The text for J2SE NervousText demo should be updated to 7.0
Reviewed-by: art
dav [Thu, 25 Nov 2010 15:39:39 +0300] rev 7237
6551412: [OpenJDK] Change the 'name=' entry in src/windows/resource/java.manifest XML file.
Reviewed-by: ohair
art [Thu, 25 Nov 2010 13:23:49 +0300] rev 7236
6993784: Clarification to shaped/translucent windows specification is required
Reviewed-by: anthony, dcherepanov
dav [Thu, 18 Nov 2010 14:26:19 +0300] rev 7235
6990904: (dav) on oel5.5, Frame doesn't show if the Frame has only a MenuBar as its component.
Reviewed-by: dcherepanov, art
lana [Tue, 30 Nov 2010 14:49:26 -0800] rev 7234
Merge
jgodinez [Thu, 18 Nov 2010 14:44:44 -0800] rev 7233
6689925: Add transform attributes to the rendering tests in J2DBench
Reviewed-by: flar, prr
ohair [Fri, 03 Dec 2010 19:47:49 -0800] rev 7232
Merge
cl [Mon, 22 Nov 2010 14:57:23 -0800] rev 7231
Added tag jdk7-b119 for changeset 7f370da0805b
cl [Thu, 02 Dec 2010 19:04:13 -0800] rev 7230
Added tag jdk7-b120 for changeset 445c518364c4
duke [Wed, 05 Jul 2017 17:28:18 +0200] rev 7229
Merge
ohair [Fri, 03 Dec 2010 19:44:29 -0800] rev 7228
Merge
cl [Mon, 22 Nov 2010 14:57:11 -0800] rev 7227
Added tag jdk7-b119 for changeset a683e80b9ca8
cl [Thu, 02 Dec 2010 19:04:00 -0800] rev 7226
Added tag jdk7-b120 for changeset 6df7c2b3dbea
igor [Tue, 07 Dec 2010 16:41:14 -0800] rev 7225
Merge
igor [Tue, 30 Nov 2010 09:23:44 -0800] rev 7224
Merge
jqzuo [Wed, 17 Nov 2010 09:43:17 -0500] rev 7223
Merge
igor [Tue, 16 Nov 2010 17:07:49 -0800] rev 7222
Merge
jqzuo [Tue, 07 Dec 2010 19:18:48 -0500] rev 7221
Merge
paulk [Wed, 17 Nov 2010 11:55:01 -0500] rev 7220
6997515: KERNEL=0 in JDK7 build causes loss of lzma compression.
Reviewed-by: billyh, jqzuo
cl [Thu, 02 Dec 2010 19:03:54 -0800] rev 7219
Added tag jdk7-b120 for changeset a841cb10e4ea
duke [Wed, 05 Jul 2017 17:28:08 +0200] rev 7218
Added tag jdk7-b120 for changeset 8c840d3ab24f
duke [Wed, 05 Jul 2017 17:28:07 +0200] rev 7217
Merge
duke [Wed, 05 Jul 2017 17:28:05 +0200] rev 7216
Merge
mcimadamore [Mon, 15 Nov 2010 14:41:21 +0000] rev 7215
6999635: Multicatch: crash while compiling simple code with a multicatch parameter
Summary: missing erasure when computing stackmaps leads to assertion error
Reviewed-by: darcy
mcimadamore [Mon, 15 Nov 2010 13:50:53 +0000] rev 7214
6985719: Alike methods in interfaces (Inheritance and Overriding)
Summary: javac should report error when interface inherits unrelated method with same erasure
Reviewed-by: jjg
darcy [Sun, 14 Nov 2010 07:16:46 -0800] rev 7213
6991528: Support making Throwable.suppressedExceptions immutable
Reviewed-by: mcimadamore
lana [Sat, 13 Nov 2010 19:00:43 -0800] rev 7212
Merge