commit | b33ec4b3d1304d32e47806c0c7c174d35afebd78 | [log] [tgz] |
---|---|---|
author | scottb@google.com <scottb@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Thu Apr 02 04:23:03 2009 +0000 |
committer | scottb@google.com <scottb@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Thu Apr 02 04:23:03 2009 +0000 |
tree | 8258114c0137e2729b150df68bd6d09cd8167abc | |
parent | f048a772a372565482abf908793b50eba1ebc22c [diff] |
Build fix: missed a couple of old-style Javadoc annotations in tests. git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@5160 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/i18n/client/Moods.java b/user/test/com/google/gwt/i18n/client/Moods.java index 0bd8922..e5cc508 100644 --- a/user/test/com/google/gwt/i18n/client/Moods.java +++ b/user/test/com/google/gwt/i18n/client/Moods.java
@@ -24,26 +24,26 @@ /** * The word for 'Happy'. * - * @gwt.key 123 * @return 'happy' */ + @Key("123") String getHappy(); /** * Convenience method to get all key/value pairs associated with the mood * array. * - * @gwt.key moods * @return returnType of moods */ + @Key("moods") Map moodMap(); /** * Gets the keys associated with moods. However note that this will not * display well as the values are "Sad", "123". * - * @gwt.key moods * @return array of moods */ + @Key("moods") String[] moodArray(); }
diff --git a/user/test/com/google/gwt/i18n/client/TestConstants.java b/user/test/com/google/gwt/i18n/client/TestConstants.java index e97674a..6cdaa59 100644 --- a/user/test/com/google/gwt/i18n/client/TestConstants.java +++ b/user/test/com/google/gwt/i18n/client/TestConstants.java
@@ -59,9 +59,7 @@ float floatZero(); - /** - * @gwt.key string - */ + @Key("string") String getString(); int intMax();