Re: [cp-patches] FYI: fix for AbstractDocument

2006-05-11 Thread Robert Schuster
Hi Andrew. I'll commit this to the release branch (0.91). Do you know if this also fixes the regressions? Or anything about these whatsever? :) Yes the GapContent fix I committed on 2006-05-02 fixed these. Sorry, I though I mentioned that somewhere. Regressions: FAIL:

[cp-patches] FYI: Qualify Map.Entry in Collections

2006-05-11 Thread Mark Wielaard
Hi, Some versions of gcj seem to have trouble resolving the unqualified Entry class so this patch qualifies them as Map.Entry. 2006-05-11 Mark Wielaard [EMAIL PROTECTED] * java/util/Collections.java (UnmodifiableMapEntry): Qualify Map.Entry. Committed, Mark Index:

[cp-patches] FYI: GeneralPath/PathIterator constants fix for gcj 4.0.x

2006-05-11 Thread Mark Wielaard
Hi, gcj 4.0.x (where x 3) seems to be unable to resolve the PathIterator used in GeneralPath. So this patch helps out that compiler. 2006-05-11 Mark Wielaard [EMAIL PROTECTED] * java/awt/geom/GeneralPath.java (WIND_EVEN_ODD, WIND_NON_ZERO): Fully qualify PathIterator constants

[cp-patches] FYI: Cast null argument to String in appletviewer main

2006-05-11 Thread Mark Wielaard
Hi, This is hopefully the last patch needed to get builder happy again (I also installed the mozilla-dev package on it). 2006-05-11 Mark Wielaard [EMAIL PROTECTED] * tools/gnu/classpath/tools/appletviewer/Main.java (main): Cast Option constructor null argument to String.

[cp-patches] FYI: BasicRadioButtonUI.paint() - minor fix

2006-05-11 Thread David Gilbert
This patch (committed) fixes an argument passed to the paintFocus() method, and removes the related TODO notes from the source code: 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicRadioButtonUI.java (paint): Pass component size to paintFocus().

[cp-patches] FYI: BasicCheckBoxUI.getDefaultIcon() removed

2006-05-11 Thread David Gilbert
This patch (committed) removes the redundant getDefaultIcon() method in BasicCheckBoxUI. Looking at Sun's API docs, the method isn't overridden in their implementation either. 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicCheckBoxUI.java

Re: [cp-patches] RFC: allow short keys in HMac

2006-05-11 Thread Raif S. Naffah
hello Casey, On Thursday 11 May 2006 09:51, Casey Marshall wrote: This patch allows short keys by default in the HMac class... looks fine. plsease go ahead. cheers; rsn pgpJQE84KQJ6B.pgp Description: PGP signature

[cp-patches] FYI: BasicCheckBoxUI.createUI - removed final qualifier

2006-05-11 Thread David Gilbert
This patch (committed) adds some API docs and removes the final qualifier from the JComponent parameter in the createUI() method (it's not there in the specification): 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicCheckBoxUI: Added API docs plus,

Re: [cp-patches] FYI: GeneralPath/PathIterator constants fix for gcj 4.0.x

2006-05-11 Thread Andrew John Hughes
On Thu, 11 May 2006 10:24:39 +0200 Mark Wielaard [EMAIL PROTECTED] wrote: Hi, gcj 4.0.x (where x 3) seems to be unable to resolve the PathIterator used in GeneralPath. So this patch helps out that compiler. 2006-05-11 Mark Wielaard [EMAIL PROTECTED] *

[cp-patches] FYI: BasicToggleButtonUI.java - tidy up

2006-05-11 Thread David Gilbert
This patch (committed) tidies up the BasicToggleButtonUI class a little: 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/basic/BasicToggleButtonUI.java: Updated API docs, (createUI): Removed 'final' qualifier for parameter, (paint): Reformatted. Regards,

[cp-patches] FYI: WindowConstants.java - updated API docs

2006-05-11 Thread David Gilbert
This patch (committed) updates the API docs for WindowConstants.java: 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/WindowConstants.java: Updated API docs. Regards, Dave Index: javax/swing/WindowConstants.java

[cp-patches] FYI: add Component.dispatchEventImpl comment

2006-05-11 Thread Robert Schuster
Hi, I decided to add a comment to my last change to make the intention more clear. The ChangeLog: 2006-05-11 Robert Schuster [EMAIL PROTECTED] * java/awt/Component.java: (dispatchEventImpl): Added comment. cya Robert Index: java/awt/Component.java

[cp-patches] FYI: Component.dispatchEventImpl fix

2006-05-11 Thread Robert Schuster
Hi, the attached patch corrects the behavior when processing mouse clicks on lightweight components: Normally a mouse-click into a Swing component is results in a focus traversal to that component. However this should be suppressed when the component is not enabled. This fixes that the cursor is

[cp-patches] FYI: JFrame.paramString() reimplemented

2006-05-11 Thread David Gilbert
This patch (committed) reimplements the paramString() method in JFrame to provide better debug info. I also added a utility method to SwingUtilities to help with this: 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/JFrame.java (paramString): Reimplemented,

[cp-patches] FYI: JFrame.java - misc small updates

2006-05-11 Thread David Gilbert
This patch (committed) contains miscellaneous updates (mostly API docs) as listed: 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/JFrame.java (EXIT_ON_CLOSE): Added note to API docs, (close_action): Renamed closeAction, (JFrame()): Change title to ,

[cp-patches] Fw: [cp-testresults] FAIL: classpath [0.91-pre] (future release) build with gcj (4.0) on Thu May 11 10:51:34 UTC 2006

2006-05-11 Thread Andrew John Hughes
Begin forwarded message: Date: Thu, 11 May 2006 10:51:34 + From: [EMAIL PROTECTED] To: classpath-testresults@gnu.org Subject: [cp-testresults] FAIL: classpath [0.91-pre] (future release) build with gcj (4.0) on Thu May 11 10:51:34 UTC 2006 /usr/local/bin/gcj -Wno-deprecated

[cp-patches] Logger initialization regression fix and a little story on security contexts during class initialization

2006-05-11 Thread Mark Wielaard
Hi, We had an interesting regression with the logging code in GNU Classpath. It wasn't immediately apparent because it was only caused with certain compilers. The class initialization order was subtly different between byte code compiled with gcj -C and jikes. So it didn't show up with gcj -C

Re: [cp-patches] RFC: ClassLoader reference implementation using getResources

2006-05-11 Thread Olivier Jolly
Lillian Angel wrote: Not sure if it helps, but there is an IndexListParser in gnu/java/net Right, it can be useful. Not in its current state as far as I understand the code because it focus on retrieving the list of dependant jar urls from one .jar while I need to get the list of the

Re: [cp-patches] Logger initialization regression fix and a little story on security contexts during class initialization

2006-05-11 Thread Archie Cobbs
Mark Wielaard wrote: We had an interesting regression with the logging code in GNU Classpath. It wasn't immediately apparent because it was only caused with certain compilers. The class initialization order was subtly different between byte code compiled with gcj -C and jikes. So it didn't show

[cp-patches] FYI: GNUGlyphVector fixlet

2006-05-11 Thread Roman Kennke
In GNUGlyphVector we were applying the FontRenderedContext's transform to the resulting shape, which is wrong. The transformation is only a hint to the font shaper how the rasterizer will finally render the glyph, so that it can fit the font perfectly into the destination grid. 2006-05-11 Roman

Re: [cp-patches] RFC: ClassLoader reference implementation using getResources

2006-05-11 Thread Lillian Angel
On Thu, 2006-05-11 at 15:43 +0200, Olivier Jolly wrote: Lillian Angel wrote: Not sure if it helps, but there is an IndexListParser in gnu/java/net Right, it can be useful. Not in its current state as far as I understand the code because it focus on retrieving the list of dependant jar

[cp-patches] FYI: Formatting in javax.swing.plaf.multi

2006-05-11 Thread David Gilbert
This patch (committed) fixes a couple of deviations from our code formatting rules: 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/multi/MultiComboBoxUI.java: Minor formatting change, * javax/swing/plaf/multi/MultiFileChooserUI.java: Likewise, *

[cp-patches] FYI: DefaultCaret and JTextComponent fixes

2006-05-11 Thread Robert Schuster
Hi, before applying this patch we had a couple of issues with the DefaultCaret and JTextComponent: - cut(), copy() and paste() worked even if the component is disabled or in a non-editable state (observed how RI works and mimiced their behavior) - caret was drawn even if the component is disabled

[cp-patches] FYI: javax.swing.plaf.metal.* - format/style updates

2006-05-11 Thread David Gilbert
This patch (committed) cleans up some formatting/style issues: 2006-05-11 David Gilbert [EMAIL PROTECTED] * javax/swing/plaf/metal/MetalBorders.java: Clean up formatting/style, * javax/swing/plaf/metal/MetalButtonUI.java: Likewise, *

[cp-patches] Patch: Focus traversal fix

2006-05-11 Thread Lillian Angel
When trying to traverse through focusable and non-focusable objects using the TAB key, several issues came up where not all components were visited and some exceptions were being thrown in the wrong places. You can test out the issue with the buttons in the Swing demo's main frame or the attached

[cp-testresults] FAIL: classpath build with jikes on Thu May 11 06:53:56 UTC 2006

2006-05-11 Thread cpdev
checking for iconv declaration... extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for pkg-config... /usr/bin/pkg-config checking for libxml-2.0 = 2.6.8... yes checking XML_CFLAGS... -I/usr/include/libxml2 checking

[cp-testresults] FAIL: jamvm build on Thu May 11 07:10:08 UTC 2006

2006-05-11 Thread cpdev
make[3]: Leaving directory `/home/cpdev/Nightly/jamvm/build/lib/java/security' make[3]: Entering directory `/home/cpdev/Nightly/jamvm/build/lib/java' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/home/cpdev/Nightly/jamvm/build/lib/java' make[2]: Leaving directory

[cp-testresults] FAIL: ecj built with gcjx on Thu May 11 07:19:31 UTC 2006

2006-05-11 Thread cpdev
import java.io.File; ^ error: required type 'java.lang.Object' not found; check your class path ￾ ^ batch/org/eclipse/jdt/internal/compiler/batch/FileSystem.java:13:0: error: type named 'java.io.File' is undefined import java.io.File; ^ error: required type 'java.lang.Object' not found;

[cp-testresults] FAIL: japi build on Thu May 11 07:24:49 UTC 2006

2006-05-11 Thread cpdev
cd src jikes -d .. -classpath /home/cpdev/Nightly/classpath/gcjx-install/share/classpath/glibj.zip: net/wuffies/japi/*.java Found 1 system error and issued 1 warning: *** Semantic Warning: I/O warning: No such file or directory while trying to open

Re: [cp-testresults] FAIL: classpath build with gcj (4.0) on Thu May 11 02:03:21 UTC 2006

2006-05-11 Thread Mark Wielaard
Hi, On Thu, 2006-05-11 at 02:03 +, [EMAIL PROTECTED] wrote: checking for mozilla-plugin... Package mozilla-plugin was not found in the pkg-config search path. Perhaps you should add the directory containing `mozilla-plugin.pc' to the PKG_CONFIG_PATH environment variable No package

[cp-testresults] FAIL: classpath build with gcj (4.0) on Thu May 11 10:34:33 UTC 2006

2006-05-11 Thread cpdev
Making installcheck in scripts make[2]: Entering directory `/home/cpdev/Nightly/classpath/build/classpath-0.92-pre/_build/scripts' make[2]: Nothing to be done for `installcheck'. make[2]: Leaving directory `/home/cpdev/Nightly/classpath/build/classpath-0.92-pre/_build/scripts' Making

[cp-testresults] FAIL: jamvm build on Thu May 11 11:07:06 UTC 2006

2006-05-11 Thread cpdev
-- 243. WARNING in ../../jamvm/lib/java/lang/reflect/Constructor.java (at line 293) throws InstantiationException, IllegalAccessException, ^^ The type InstantiationException is deprecated -- 244. WARNING in

[cp-testresults] FAIL: ecj built with ecj on jamvm on Thu May 11 11:16:49 UTC 2006

2006-05-11 Thread cpdev
xargs: jamvm: No such file or directory ___ Classpath-testresults mailing list Classpath-testresults@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-testresults

[cp-testresults] FAIL: jamvm release build on Thu May 11 11:44:40 UTC 2006

2006-05-11 Thread cpdev
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking build system type... i386-pc-linux-gnu checking host system type... i386-pc-linux-gnu

Re: [cp-testresults] FAIL: jamvm build on Thu May 11 11:07:06 UTC 2006

2006-05-11 Thread Mark Wielaard
On Thu, 2006-05-11 at 11:07 +, [EMAIL PROTECTED] wrote: 246. ERROR in ../../jamvm/lib/java/lang/reflect/Constructor.java (at line 296) public boolean isSynthetic() ^ Duplicate method isSynthetic() in type Constructor Oops. We had some local changes

[cp-testresults] FAIL: regressions for libgcj on Thu May 11 12:02:43 UTC 2006

2006-05-11 Thread cpdev
Baseline from: Thu May 11 03:12:26 UTC 2006 Regressions: FAIL: Thread_Sleep -O3 -findirect-dispatch output - bytecode-native test FAIL: Thread_Sleep output - bytecode-native test FAIL: Thread_Sleep output - source compiled test Improvements: PASS: PR26858 execution - gij test PASS: assign -O3

[cp-testresults] FAIL: regressions for mauve-jamvm-release against mauve-jamvm on Fri May 12 01:06:30 UTC 2006

2006-05-11 Thread cpdev
Baseline from: Thu May 11 18:08:43 UTC 2006 Regressions: FAIL: gnu.testlet.java.io.Utf8Encoding.mojo: Surrogate Pairs (number 6) FAIL: gnu.testlet.java.io.Utf8Encoding.mojo: Surrogate Pairs (number 7) FAIL: gnu.testlet.java.io.Utf8Encoding.mojo: Surrogate Pairs (number 8) FAIL:

[cp-testresults] classpath daily snapshot 20060512 FAILED

2006-05-11 Thread Michael Koch
checking size of void *... 4 checking whether byte ordering is bigendian... no checking for unistd.h... (cached) yes checking for sys/types.h... (cached) yes checking sys/config.h usability... no checking sys/config.h presence... no checking for sys/config.h... no checking sys/ioctl.h usability...

Platform Java on the 770 status

2006-05-11 Thread Philippe Laporte
Hi, We have obtained a second 770 unit and have produced better screenshots and videos, which are available at: http://82.193.172.109/screenshots/ RedHat et al have been making constant progress on the AWT problems when running on the 770: two bugs have been closed and a new one opened:

Re: Build failure: mozilla-plugin

2006-05-11 Thread Thomas Fitzsimmons
Norman Hendrich wrote: Hello all, trying to build classpath cvs fails for me right now, because I don't have package mozilla-plugin installed on my Linux system. (I do have mozilla, but I don't have any plugins except Suns JRE and flash-blocked flash.) Anyway, I think that classpath should

Re: Build failure: mozilla-plugin

2006-05-11 Thread Norman Hendrich
Hello Tom, Try --disable-plugin. oops... ok, works. Thanks. Guess I should have grep'ed for plugin instead of mozilla in ChangeLog*. Perhaps a better error message is in order? - Norman

[Bug classpath/27563] New: java.text.NumberFormat#getNumberInstance(Locale) and getIntegerInstance(Locale) should use different resource names

2006-05-11 Thread kiyun dot roe at active-endpoints dot com
java.text.NumberFormat#getNumberInstance(Locale) looks for a resource named numberFormat and defaults to #,##0.### if the resource is not located. java.text.NumberFormat#getIntegerInstance(Locale) also looks for a resource named numberFormat but defaults to #,##0 if the resource is not located.

Re: Build failure: mozilla-plugin

2006-05-11 Thread Chris Burdess
Thomas Fitzsimmons wrote: Norman Hendrich wrote: Hello all, trying to build classpath cvs fails for me right now, because I don't have package mozilla-plugin installed on my Linux system. (I do have mozilla, but I don't have any plugins except Suns JRE and flash-blocked flash.) Anyway, I

[commit-cp] classpath ./ChangeLog java/util/Collections.java

2006-05-11 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/05/11 07:56:42 Modified files: . : ChangeLog java/util : Collections.java Log message: * java/util/Collections.java

[commit-cp] classpath ./ChangeLog tools/gnu/classpath/tools...

2006-05-11 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/05/11 08:33:06 Modified files: . : ChangeLog tools/gnu/classpath/tools/appletviewer: Main.java Log message: *

[commit-cp] classpath ./ChangeLog javax/swing/plaf/basic/Ba...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 08:37:19 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicRadioButtonUI.java Log message: 2006-05-11

[commit-cp] classpath ./ChangeLog java/awt/Component.java

2006-05-11 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Robert Schuster [EMAIL PROTECTED] 06/05/11 08:24:35 Modified files: . : ChangeLog java/awt : Component.java Log message: 2006-05-11 Robert Schuster

[commit-cp] classpath ./ChangeLog java/awt/geom/GeneralPath...

2006-05-11 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/05/11 08:27:27 Modified files: . : ChangeLog java/awt/geom : GeneralPath.java Log message: *

[commit-cp] classpath ./ChangeLog javax/swing/plaf/basic/Ba...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 09:04:49 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicCheckBoxUI.java Log message: 2006-05-11 David

[commit-cp] classpath ./ChangeLog javax/swing/plaf/basic/Ba...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 09:25:18 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicCheckBoxUI.java Log message: 2006-05-11 David

[commit-cp] classpath ./ChangeLog javax/swing/plaf/basic/Ba...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 09:54:00 Modified files: . : ChangeLog javax/swing/plaf/basic: BasicToggleButtonUI.java Log message: 2006-05-11

[commit-cp] classpath ./ChangeLog javax/swing/WindowConstan...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 10:14:01 Modified files: . : ChangeLog javax/swing: WindowConstants.java Log message: 2006-05-11 David Gilbert

[commit-cp] classpath ./ChangeLog javax/swing/JFrame.java j...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 10:51:03 Modified files: . : ChangeLog javax/swing: JFrame.java SwingUtilities.java Log message: 2006-05-11

[commit-cp] classpath ./ChangeLog javax/swing/JFrame.java

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 11:18:42 Modified files: . : ChangeLog javax/swing: JFrame.java Log message: 2006-05-11 David Gilbert [EMAIL

[commit-cp] classpath ./ChangeLog java/awt/geom/GeneralPath... [classpath-0_91-branch]

2006-05-11 Thread Andrew John Hughes
CVSROOT:/sources/classpath Module name:classpath Branch: classpath-0_91-branch Changes by: Andrew John Hughes [EMAIL PROTECTED] 06/05/11 11:58:45 Modified files: . : ChangeLog java/awt/geom : GeneralPath.java Log message:

[commit-cp] classpath ./ChangeLog java/util/logging/Logger....

2006-05-11 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Mark Wielaard [EMAIL PROTECTED] 06/05/11 12:34:25 Modified files: . : ChangeLog java/util/logging: Logger.java Log message: * java/util/logging/Logger.java

[commit-cp] classpath ./ChangeLog java/util/logging/Logger.... [classpath-0_91-branch]

2006-05-11 Thread Mark Wielaard
CVSROOT:/cvsroot/classpath Module name:classpath Branch: classpath-0_91-branch Changes by: Mark Wielaard [EMAIL PROTECTED] 06/05/11 12:39:19 Modified files: . : ChangeLog java/util/logging: Logger.java Log message: *

[commit-cp] classpath gnu/java/awt/font/GNUGlyphVector.java...

2006-05-11 Thread Roman Kennke
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED]06/05/11 14:15:57 Modified files: gnu/java/awt/font: GNUGlyphVector.java . : ChangeLog Log message: 2006-05-11 Roman Kennke

[commit-cp] classpath ./ChangeLog javax/swing/plaf/multi/Mu...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 16:23:23 Modified files: . : ChangeLog javax/swing/plaf/multi: MultiComboBoxUI.java

[commit-cp] classpath javax/swing/text/DefaultCaret.java ja...

2006-05-11 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Robert Schuster [EMAIL PROTECTED] 06/05/11 16:29:30 Modified files: javax/swing/text: DefaultCaret.java JTextComponent.java . : ChangeLog Log message:

[commit-cp] classpath ChangeLog

2006-05-11 Thread Robert Schuster
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Robert Schuster [EMAIL PROTECTED] 06/05/11 16:42:22 Modified files: . : ChangeLog Log message: Fixed the changelog entry of that file: 2006-04-18

[commit-cp] classpath ./ChangeLog javax/swing/plaf/metal/Me...

2006-05-11 Thread David Gilbert
CVSROOT:/sources/classpath Module name:classpath Branch: Changes by: David Gilbert [EMAIL PROTECTED] 06/05/11 17:05:55 Modified files: . : ChangeLog javax/swing/plaf/metal: MetalBorders.java MetalButtonUI.java

[commit-cp] classpath ./ChangeLog java/awt/ContainerOrderFo...

2006-05-11 Thread Lillian Angel
CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Lillian Angel [EMAIL PROTECTED] 06/05/11 20:31:13 Modified files: . : ChangeLog java/awt : ContainerOrderFocusTraversalPolicy.java Log message: