You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by cn...@apache.org on 2016/02/25 09:31:57 UTC

struts git commit: escaped @ characters in javadoc code sample to avoid javadoc warnings

Repository: struts
Updated Branches:
  refs/heads/master 46cd6a127 -> b638260d9


escaped @ characters in javadoc code sample to avoid javadoc warnings


Project: http://git-wip-us.apache.org/repos/asf/struts/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/b638260d
Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/b638260d
Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/b638260d

Branch: refs/heads/master
Commit: b638260d925ce8d9e5f54cbdb2028cc160cd05d4
Parents: 46cd6a1
Author: cnenning <cn...@apache.org>
Authored: Thu Feb 25 09:31:40 2016 +0100
Committer: cnenning <cn...@apache.org>
Committed: Thu Feb 25 09:31:40 2016 +0100

----------------------------------------------------------------------
 .../org/apache/struts2/tiles/annotation/TilesDefinition.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/b638260d/plugins/tiles/src/main/java/org/apache/struts2/tiles/annotation/TilesDefinition.java
----------------------------------------------------------------------
diff --git a/plugins/tiles/src/main/java/org/apache/struts2/tiles/annotation/TilesDefinition.java b/plugins/tiles/src/main/java/org/apache/struts2/tiles/annotation/TilesDefinition.java
index 3aa144c..239dc85 100644
--- a/plugins/tiles/src/main/java/org/apache/struts2/tiles/annotation/TilesDefinition.java
+++ b/plugins/tiles/src/main/java/org/apache/struts2/tiles/annotation/TilesDefinition.java
@@ -39,10 +39,10 @@ import java.lang.annotation.Target;
  * <p>
  *  You can annotate an action like that:
  *  <pre>
- *      @Result(name = "success", type="tiles")
- *      @TilesDefinition(extend = "layout", putAttributes = {
- *          @TilesPutAttribute(name = "header", value = "/WEB-INF/tiles/header.jsp"),
- *          @TilesPutAttribute(name = "body", value = "/WEB-INF/tiles/body.ftl")
+ *      {@literal @}Result(name = "success", type="tiles")
+ *      {@literal @}TilesDefinition(extend = "layout", putAttributes = {
+ *          {@literal @}TilesPutAttribute(name = "header", value = "/WEB-INF/tiles/header.jsp"),
+ *          {@literal @}TilesPutAttribute(name = "body", value = "/WEB-INF/tiles/body.ftl")
  *      })
  *      public class FooAction extends ActionSupport {
  *  </pre>