Don't add bounds in the type info of a var.

Showing bounds in the type info leads to generated stubs that don't
build.

The problem occurs when you have a generic class
class MyClass<V extends SomeClass> {
  List<? super V> items;
}

doclava currently generates:
class MyClass<V extends SomeClass> {
  List<? super V extends SomeClass> items;
}

Which doesn't build. With this change, it doesn't put "V extends
SomeClass" in the type info for items, but just "V" instead.

Change-Id: Iaa9b1bdeec96951868ba77a4eb55c566f19179ca
1 file changed