Removed redundant gwt.typeArgs.

Review by: ecc (TBR)

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1883 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/samples/dynatable/src/com/google/gwt/sample/dynatable/client/Schedule.java b/samples/dynatable/src/com/google/gwt/sample/dynatable/client/Schedule.java
index b1872ae..1a9fc17 100644
--- a/samples/dynatable/src/com/google/gwt/sample/dynatable/client/Schedule.java
+++ b/samples/dynatable/src/com/google/gwt/sample/dynatable/client/Schedule.java
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006 Google Inc.
+ * Copyright 2008 Google Inc.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  * use this file except in compliance with the License. You may obtain a copy of
@@ -26,9 +26,6 @@
  */
 public class Schedule implements IsSerializable {
 
-  /**
-   * @gwt.typeArgs <com.google.gwt.sample.dynatable.client.TimeSlot>
-   */
   private List<TimeSlot> timeSlots = new ArrayList<TimeSlot>();
 
   public Schedule() {
diff --git a/user/src/com/google/gwt/user/client/ui/SuggestOracle.java b/user/src/com/google/gwt/user/client/ui/SuggestOracle.java
index da1b6cd..c03adf9 100644
--- a/user/src/com/google/gwt/user/client/ui/SuggestOracle.java
+++ b/user/src/com/google/gwt/user/client/ui/SuggestOracle.java
@@ -147,10 +147,6 @@
    * {@link com.google.gwt.user.client.ui.SuggestOracle} response.
    */
   public static class Response implements IsSerializable {
-
-    /**
-     * @gwt.typeArgs <com.google.gwt.user.client.ui.SuggestOracle.Suggestion>
-     */
     private Collection<? extends Suggestion> suggestions;
 
     /**