Sergey Bylokhov
e1bdbfa0e0
8074500: java.awt.Checkbox.setState() call causes ItemEvent to be filed
...
Reviewed-by: alexsch, azvegint
2015-04-02 19:53:53 +03:00
Joe Darcy
21964ce20f
8076286: Fix missing doclint warnings in javax.swing.{colorchooser, event, filechooser}
...
Reviewed-by: serb
2015-04-02 08:41:32 -07:00
Daniel Fuchs
ce950c0798
7113878: LogManager - namedLoggers should be ConcurrentHashMap instead of Hashtable
...
NamedLoggers is now a ConcurrentHashMap. findLogger is updated to take benefit of the change.
Co-authored-by: Peter Levart <peter.levart@gmail.com>
Reviewed-by: dholmes, lancea, martin, mchung, plevart
2015-04-02 16:24:46 +02:00
Daniel Fuchs
679db144e5
8075810: LogManager.readConfiguration may throw undocumented IllegalArgumentException
...
LogManager.readConfiguration will wrap the IllegalArgumentException thrown by Properties.load inside an IOException.
Reviewed-by: lancea, mchung, rriggs
2015-04-02 11:42:07 +02:00
Laurent Bourgès
8377d7ebd6
8076419: Path2D copy constructors and clone method propagate size of arrays from source path
...
Reviewed-by: flar, prr
2015-04-01 11:23:47 -07:00
David Dehaven
b91f622563
Merge
2015-03-31 16:23:01 -07:00
David Dehaven
b30c48a154
Merge
2015-03-31 16:17:17 -07:00
Andrew Haley
252f04c7fd
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
...
Use unaligned Unsafe loads and stores for ByteBuffer access on platforms which support unaligned access. Add intrinsics for Unsafe.{get,put}-X-Unaligned methods.
Reviewed-by: dholmes, jrose, psandoz, kvn
2015-03-31 12:30:52 -07:00
Joe Darcy
410bc96fd4
8075081: Fix missing doclint warnings in java.awt
...
Reviewed-by: serb
2015-03-31 08:48:53 -07:00
Anton Nashatyrev
68aa2c14c2
8071668: [macosx] Clipboard does not work with 3rd parties Clipboard Managers
...
Reviewed-by: ant, serb
2015-03-30 18:41:51 +03:00
Anton Nashatyrev
795c4bd736
8074481: [macosx] Menu items are appearing on top of other windows
...
Reviewed-by: ant, serb
2015-03-30 17:46:58 +03:00
Roger Riggs
84eb217450
7021006: (process) Remove disabled clone-exec feature
...
Remove clone implemention on Unix
Reviewed-by: martin, alanb, dholmes
2015-03-30 09:49:26 -04:00
Roger Riggs
adc0b9b8aa
8076184: Cleanup compile/link warnings on Solaris
...
Cleanup reorder-sparc* and jni_util.c files
Reviewed-by: erikj, alanb
2015-03-30 09:45:39 -04:00
Aleksei Efimov
7863bfdf2a
8075667: (tz) Support tzdata2015b
...
Reviewed-by: okutsu
2015-03-30 15:57:39 +03:00
Masayoshi Okutsu
90e30c53bc
8075548: SimpleDateFormat formatting of "LLLL" in English is incorrect; should be identical to "MMMM"
...
Reviewed-by: naoto
2015-03-30 16:31:18 +09:00
Peter Brunet
a6872dbbfb
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
...
Move files from open to closed
Reviewed-by: prr, mchung, erikj, ihse, serb, bpatel
2015-03-27 16:13:45 -05:00
Sean Coffey
c189249408
8059588: deadlock in java/io/PrintStream when verbose javax.net.debug flags are set
...
Reviewed-by: mullan
2015-03-27 19:13:47 +00:00
Zoltan Majo
1d3fd38413
Merge
2015-03-27 09:02:55 +01:00
David Holmes
f2bf96030e
8072740: move closed jvm.cfg files out of open repo
...
Reviewed-by: erikj, ihse, dlong
2015-03-26 19:25:48 -04:00
Alexander Stepanov
78bab3fc15
8075956: Fix some tidy warnings for java.awt
...
Minor HTML markup fix
Reviewed-by: azvegint
2015-03-26 14:18:42 +04:00
Alexander Stepanov
fc1c3b4838
8075934: Fix some tidy warnings/errors for javax/imageio
...
Minor HTML markup fix
Reviewed-by: serb
2015-03-26 14:09:44 +04:00
Srikanth Adayapalam
3f410c76ca
8076039: Remove the unused internal API sun.reflect.misc.FieldUtil.getDeclaredFields
...
Reviewed-by: mchung, hawtin
2015-03-26 11:59:41 +05:30
Jaroslav Bachorik
ca198f7351
8023093: Add ManagementAgent.status diagnostic command
...
Reviewed-by: sla
2015-03-25 18:33:17 +01:00
Alexander Scherbatiy
a76b85f2bb
8033000: No Horizontal Mouse Wheel Support In
...
Reviewed-by: serb, azvegint
2015-03-25 16:31:05 +04:00
Alexander Scherbatiy
a5bc56dcec
8075244: [macosx] The fix for JDK-8043869 should be reworked
...
Reviewed-by: prr, serb, ant
2015-03-25 12:37:36 +04:00
David Dehaven
6eb7a3db58
Merge
2015-03-24 11:00:32 -07:00
Chris Hegarty
82dd135b5f
8075824: Add default[Read|Write]Object to java.util.Date
...
Reviewed-by: alanb, rriggs
2015-03-24 14:48:11 +00:00
Magnus Ihse Bursie
c8ac9172fc
8075717: Replace INTERNAL_BUILD with DEBUG in awt
...
Reviewed-by: serb, azvegint
2015-03-24 10:52:08 +01:00
Alejandro Murillo
8972c391cb
Merge
2015-03-23 14:00:55 -07:00
Alejandro Murillo
6029b480b7
Merge
2015-03-23 11:44:42 -07:00
Roger Riggs
149272bbdb
Merge
2015-03-23 10:58:27 -04:00
Roger Riggs
a056457b52
8067796: (process) Process.waitFor(timeout, unit) doesn't throw NPE if timeout is less than, or equal to zero when unit == null
...
Implement checking for NPE in Process implementation before other conditions
Reviewed-by: martin, chegar
2015-03-23 10:13:32 -04:00
Roger Riggs
c92b8a33a6
8073220: A typo in the documentation for class ProcessBuilder
...
Correct reference to be OutputStream
Reviewed-by: martin, alanb
2015-03-23 09:53:08 -04:00
Roger Riggs
7cb7ae5914
8071480: (process spec) ProcessBuilder.start spec linked to the wrong checkRead and checkWrite methods
...
Disambiguate with links to checkRead(String) and checkWrite(String)
Reviewed-by: alanb, martin
2015-03-23 09:52:42 -04:00
Paul Sandoz
497fe8d068
8075560: Typo in Javadoc for java.util.Optional.equals()
...
Reviewed-by: alanb
2015-03-23 14:20:39 +01:00
Andrew Brygin
e7e3187500
8074954: ImageInputStreamImpl.readShort/readInt do not behave correctly at EOF
...
Reviewed-by: prr, serb
2015-03-23 11:19:41 +03:00
Weijun Wang
3fbfa7ee89
8074935: jdk8 keytool doesn't validate pem files for RFC 1421 correctness, as jdk7 did
...
Reviewed-by: mullan
2015-03-23 08:51:51 +08:00
Vladimir Ivanov
71020f90ef
8075263: MHI::checkCustomized isn't eliminated for inlined MethodHandles
...
Reviewed-by: jrose, kvn
2015-03-20 11:42:31 -07:00
Brian Burkhalter
d7419560c2
8075362: j.u.Properties.load() methods have misaligned @throws clauses
...
Add spaces to align the @throws clauses, and rename Basic.java test and its @summary clause.
Reviewed-by: rriggs
2015-03-20 10:37:03 -07:00
Mikael Vidstedt
49dec12116
8074839: Resolve disabled warnings for libunpack and the unpack200 binary
...
Reviewed-by: dholmes, ksrini
2015-03-20 10:02:44 -07:00
Alejandro Murillo
1b547035a8
Merge
2015-03-19 15:00:51 -07:00
Semyon Sadetsky
ca998d2d4c
4473075: JTable header rendering problem (after setting preferred size)
...
Reviewed-by: alexsch, serb
2015-03-18 15:03:16 +04:00
Volker Simonis
40728fc162
8071687: AIX port of "8039173: Propagate errors from Diagnostic Commands as exceptions in the attach framework"
...
Reviewed-by: sla
2015-03-18 09:13:11 +01:00
Naoto Sato
ca08065c34
8074350: Support ISO 4217 "Current funds codes" table (A.2)
...
8074351: Support for currencies with the 4 digits (or more) minor unit
Reviewed-by: okutsu
2015-03-17 16:04:26 -07:00
Phil Race
80b33776b1
8075277: JDK is still building X11 related Java files on OSX
...
Reviewed-by: ihse, erikj, serb
2015-03-17 15:18:11 -07:00
Phil Race
391adb65e0
Merge
2015-03-17 14:38:54 -07:00
Phil Race
f15d56a3a6
Merge
2015-03-17 14:20:45 -07:00
Staffan Larsen
94cafa6c0e
8075056: Remove Version.java.template from jconsole
...
Reviewed-by: egahlin, iris, ihse, alanb, erikj, mchung
2015-03-17 20:45:23 +01:00
Phil Race
9dbd9dd373
Merge
2015-03-17 12:30:53 -07:00
Xueming Shen
f3a2e4480d
8074678: JCK test java_util/regex/MatchResult/index.html starts failing after JDK-8071479
...
To add non-match sanity check
Reviewed-by: psandoz
2015-03-17 09:54:36 -07:00