Repository: tapestry-5 Updated Branches: refs/heads/master 2a49d56a1 -> 7dac9f8ab
deprecate Grid CSS class constants, they are unused since dc342eb116e775165bdac4a5de8f3f45fa0235e0 Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/7dac9f8a Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/7dac9f8a Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/7dac9f8a Branch: refs/heads/master Commit: 7dac9f8ab48e45dd0290c6b04b1f895c9d186498 Parents: 2a49d56 Author: Jochen Kemnade <[email protected]> Authored: Tue Sep 15 11:21:16 2015 +0200 Committer: Jochen Kemnade <[email protected]> Committed: Tue Sep 15 11:21:16 2015 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/tapestry5/grid/GridConstants.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/7dac9f8a/tapestry-core/src/main/java/org/apache/tapestry5/grid/GridConstants.java ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/grid/GridConstants.java b/tapestry-core/src/main/java/org/apache/tapestry5/grid/GridConstants.java index f344a83..e9c6f19 100644 --- a/tapestry-core/src/main/java/org/apache/tapestry5/grid/GridConstants.java +++ b/tapestry-core/src/main/java/org/apache/tapestry5/grid/GridConstants.java @@ -19,12 +19,16 @@ public class GridConstants /** * CSS class for the first column or the first row. May be applied to a <th> (in the <thead>) or a * <tr> (in the <tbody>). + * + * @deprecated Deprecated in 5.4 with no replacement. */ public static final String FIRST_CLASS = "t-first"; /** * CSS class for the last column or the last row. May be applied to a <th> (in the <thead>) or a * <tr> (in the <tbody>). + * + * @deprecated Deprecated in 5.4 with no replacement. */ public static final String LAST_CLASS = "t-last";
