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 2019/01/11 08:35:33 UTC

[myfaces-tobago] branch tobago-4.x updated: set unused field to deprecated

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch tobago-4.x
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/tobago-4.x by this push:
     new b0c5870  set unused field to deprecated
b0c5870 is described below

commit b0c58705449e16d5765a0b0fae81f33a35a81a3d
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Fri Jan 11 09:34:48 2019 +0100

    set unused field to deprecated
---
 .../src/main/java/org/apache/myfaces/tobago/model/SheetState.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/model/SheetState.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/model/SheetState.java
index be8fd38..1ba59b7 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/model/SheetState.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/model/SheetState.java
@@ -21,8 +21,6 @@ package org.apache.myfaces.tobago.model;
 
 import org.apache.myfaces.tobago.event.SortActionEvent;
 import org.apache.myfaces.tobago.internal.util.StringUtils;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 import java.io.Serializable;
 import java.util.ArrayList;
@@ -32,8 +30,10 @@ public class SheetState implements Serializable, ScrollPositionState {
 
   private static final long serialVersionUID = 2L;
 
-  private static final Logger LOG = LoggerFactory.getLogger(SheetState.class);
-
+  /**
+   * @deprecated since 4.4.0
+   */
+  @Deprecated
   public static final String SEPARATOR = ",";
 
   private int first;