You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2021/02/25 04:37:08 UTC

svn commit: r1886907 - /pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java

Author: rwhitcomb
Date: Thu Feb 25 04:37:07 2021
New Revision: 1886907

URL: http://svn.apache.org/viewvc?rev=1886907&view=rev
Log:
Update an error message in Component.

Modified:
    pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java?rev=1886907&r1=1886906&r2=1886907&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java Thu Feb 25 04:37:07 2021
@@ -113,7 +113,8 @@ public abstract class Component implemen
                 previousValue = styles.put(key, value);
                 componentStyleListeners.styleUpdated(Component.this, key, previousValue);
             } catch (PropertyNotFoundException exception) {
-                System.err.println("\"" + key + "\" is not a valid style for " + Component.this);
+                System.err.println("\"" + key + "\" is not a valid style for "
+                    + Component.this.getClass().getName());
             }
 
             return previousValue;