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 2017/05/17 18:45:30 UTC

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

Author: rwhitcomb
Date: Wed May 17 18:45:30 2017
New Revision: 1795444

URL: http://svn.apache.org/viewvc?rev=1795444&view=rev
Log:
PIVOT-997:  Remove premature references to TextInputMethodListener which were
inadvertently added in addition to the changes for WTKListenerList.


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=1795444&r1=1795443&r2=1795444&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/Component.java Wed May 17 18:45:30 2017
@@ -2772,18 +2772,6 @@ public abstract class Component implemen
         return consumed;
     }
 
-    /**
-     * Returns the input method listener for this component,
-     * which will reside in the skin, so defer to the skin class.
-     *
-     * @return The input method listener (if any) for this
-     * component.
-     */
-    public TextInputMethodListener getTextInputMethodListener() {
-System.out.println("Component.getTextInputMethodListener() called");
-        return ((ComponentSkin)getSkin()).getTextInputMethodListener();
-    }
-
     @Override
     public String toString() {
         String s;