Changed comments within code generator to better mirror the actual output code.

Review at http://gwt-code-reviews.appspot.com/1729804

Review by: nchalko@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@11036 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/validation/rebind/GwtSpecificValidatorCreator.java b/user/src/com/google/gwt/validation/rebind/GwtSpecificValidatorCreator.java
index 68040bc..1a875b5 100644
--- a/user/src/com/google/gwt/validation/rebind/GwtSpecificValidatorCreator.java
+++ b/user/src/com/google/gwt/validation/rebind/GwtSpecificValidatorCreator.java
@@ -1509,13 +1509,15 @@
     // final Set<ConstraintViolation<T>> violations,
     sw.println("final Set<ConstraintViolation<T>> violations,");
 
-    // final BeanType object, <Type> value,
+    // BeanType object,
     sw.println(beanHelper.getTypeCanonicalName() + " object,");
 
-    // Class<?>... groups) {
+    // final <Type> value,
     sw.print("final ");
     sw.print(elementType.getParameterizedQualifiedSourceName());
     sw.println(" value,");
+
+    // Class<?>... groups) {
     sw.println("Class<?>... groups) {");
     sw.outdent();