You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/02/11 11:02:51 UTC

svn commit: r1729787 - in /myfaces/tobago/branches/tobago-3.0.x: tobago-core/src/main/java/org/apache/myfaces/tobago/util/EncodeAjaxCallback.java tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/util/RenderUtils.java

Author: lofwyr
Date: Thu Feb 11 10:02:51 2016
New Revision: 1729787

URL: http://svn.apache.org/viewvc?rev=1729787&view=rev
Log:
cleanup

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/util/EncodeAjaxCallback.java
    myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/util/RenderUtils.java

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/util/EncodeAjaxCallback.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/util/EncodeAjaxCallback.java?rev=1729787&r1=1729786&r2=1729787&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/util/EncodeAjaxCallback.java (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/util/EncodeAjaxCallback.java Thu Feb 11 10:02:51 2016
@@ -55,20 +55,4 @@ public class EncodeAjaxCallback implemen
       return PhaseId.RENDER_RESPONSE;
   }
   
-  /**
-   * @deprecated since 2.0.0, please use component.encodeAll()
-   */
-  @Deprecated
-  public static void encodeAll(final FacesContext facesContext, final UIComponent component) throws IOException {
-    component.encodeAll(facesContext);
-  }
-
-  /**
-   * @deprecated since 2.0.0, please use EncodeUtils.prepareRendererAll()
-   */
-  @Deprecated
-  public static void prepareRendererAll(final FacesContext facesContext, final UIComponent component)
-      throws IOException {
-    EncodeUtils.prepareRendererAll(facesContext, component);
-  }
 }

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/util/RenderUtils.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/util/RenderUtils.java?rev=1729787&r1=1729786&r2=1729787&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/util/RenderUtils.java (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/util/RenderUtils.java Thu Feb 11 10:02:51 2016
@@ -109,15 +109,6 @@ public class RenderUtils {
     return false;
   }
 
-  /**
-   * @deprecated since 2.0.0, please use EncodeUtils.prepareRendererAll()
-   */
-  @Deprecated
-  public static void prepareRendererAll(final FacesContext facesContext, final UIComponent component)
-      throws IOException {
-    EncodeUtils.prepareRendererAll(facesContext, component);
-  }
-
   public static String getFormattedValue(final FacesContext facesContext, final UIComponent component) {
     Object value = null;
     if (component instanceof ValueHolder) {