Revision: 8728
Author: rj...@google.com
Date: Tue Sep  7 14:07:00 2010
Log: Fix checkstyle error introduced at r8726

http://code.google.com/p/google-web-toolkit/source/detail?r=8728

Modified:
/trunk/user/src/com/google/gwt/uibinder/elementparsers/HtmlPlaceholderInterpreter.java

=======================================
--- /trunk/user/src/com/google/gwt/uibinder/elementparsers/HtmlPlaceholderInterpreter.java Tue Sep 7 12:42:09 2010 +++ /trunk/user/src/com/google/gwt/uibinder/elementparsers/HtmlPlaceholderInterpreter.java Tue Sep 7 14:07:00 2010
@@ -86,20 +86,20 @@

   /**
* Returns the {...@link #nextPlaceholder(String, String, String)}, using the - * given {...@code name} and {...@code value} and a standard opening tag as example + * given {...@code name} and {...@code value} and a standard closing tag as example
    * text.
    */
-  protected String nextOpenPlaceholder(String name, String value) {
-    return nextPlaceholder(name, EXAMPLE_OPEN_TAG, value);
+  protected String nextClosePlaceholder(String name, String value) {
+    return nextPlaceholder(name, EXAMPLE_CLOSE_TAG, value);
   }

   /**
* Returns the {...@link #nextPlaceholder(String, String, String)}, using the - * given {...@code name} and {...@code value} and a standard closing tag as example + * given {...@code name} and {...@code value} and a standard opening tag as example
    * text.
    */
-  protected String nextClosePlaceholder(String name, String value) {
-    return nextPlaceholder(name, EXAMPLE_CLOSE_TAG, value);
+  protected String nextOpenPlaceholder(String name, String value) {
+    return nextPlaceholder(name, EXAMPLE_OPEN_TAG, value);
   }

   /**

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to