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 2013/11/12 13:31:27 UTC

svn commit: r1541033 - /myfaces/tobago/branches/tobago-1.5.x/tobago-core/src/main/java/org/apache/myfaces/tobago/context/ClientProperties.java

Author: lofwyr
Date: Tue Nov 12 12:31:27 2013
New Revision: 1541033

URL: http://svn.apache.org/r1541033
Log:
allow usage of ClientProperties.getInstance()
(not deprecated any longer)

Modified:
    myfaces/tobago/branches/tobago-1.5.x/tobago-core/src/main/java/org/apache/myfaces/tobago/context/ClientProperties.java

Modified: myfaces/tobago/branches/tobago-1.5.x/tobago-core/src/main/java/org/apache/myfaces/tobago/context/ClientProperties.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.5.x/tobago-core/src/main/java/org/apache/myfaces/tobago/context/ClientProperties.java?rev=1541033&r1=1541032&r2=1541033&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.5.x/tobago-core/src/main/java/org/apache/myfaces/tobago/context/ClientProperties.java (original)
+++ myfaces/tobago/branches/tobago-1.5.x/tobago-core/src/main/java/org/apache/myfaces/tobago/context/ClientProperties.java Tue Nov 12 12:31:27 2013
@@ -126,18 +126,13 @@ public class ClientProperties implements
   /**
    * @deprecated since 1.5. Please use 
    * {@link 
-   * org.apache.myfaces.tobago.util.VariableResolverUtils#resolveClientProperties(javax.faces.context.FacesContext)} 
+   * org.apache.myfaces.tobago.context.ClientProperties#getInstance(javax.faces.context.FacesContext)}
    */
   @Deprecated
   public static ClientProperties getInstance(UIViewRoot viewRoot) {
     return getInstance(FacesContext.getCurrentInstance());
   }
 
-  /**
-   * @deprecated since 1.5. Please use 
-   * {@link 
-   * org.apache.myfaces.tobago.util.VariableResolverUtils#resolveClientProperties(javax.faces.context.FacesContext)} 
-   */
   @Deprecated
   public static ClientProperties getInstance(FacesContext facesContext) {
     return (ClientProperties) VariableResolverUtils.resolveClientProperties(facesContext);