You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2013/03/15 00:09:18 UTC

[2/14] git commit: Add @IncompatibleChange annotation

Add @IncompatibleChange annotation


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/45d92c15
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/45d92c15
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/45d92c15

Branch: refs/heads/master
Commit: 45d92c1556809ac9bf894539666c1c8ad8d6497b
Parents: abc4e9a
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Mar 1 16:44:49 2013 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Thu Mar 14 13:38:02 2013 -0700

----------------------------------------------------------------------
 .../tapestry5/services/LocalizationSetter.java     |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/45d92c15/tapestry-core/src/main/java/org/apache/tapestry5/services/LocalizationSetter.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/services/LocalizationSetter.java b/tapestry-core/src/main/java/org/apache/tapestry5/services/LocalizationSetter.java
index 9e0bb48..5cee327 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/services/LocalizationSetter.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/services/LocalizationSetter.java
@@ -18,6 +18,7 @@ import java.util.List;
 import java.util.Locale;
 
 import org.apache.tapestry5.SelectModel;
+import org.apache.tapestry5.ioc.annotations.IncompatibleChange;
 
 /**
  * Sets the thread's locale given a desired locale. Note that the desired locale is just a hint. It will try to honor it
@@ -52,6 +53,7 @@ public interface LocalizationSetter
      *            locale in effect for this request
      * @since 5.1.0.0
      */
+    @IncompatibleChange(release = "5.4", details = "typo is method name corrected")
     void setNonPersistentLocaleFromLocaleName(String localeName);
 
     /**