gson-comments/gson/src/test/java/com
Andrey Mogilev 03a72e752e Fix StackOverflowError on resolving types with TypeVariable recursion (#1128)
* Fix StackOverflowError on resolving types with TypeVariable recursion

Sample failing code:
  private static class TestType<X> {
    TestType<? super X> superType;
  }
  ...
  new Gson().getAdapter(TestType.class);

* fix build errors
2017-07-31 10:50:29 -07:00
..
google/gson Fix StackOverflowError on resolving types with TypeVariable recursion (#1128) 2017-07-31 10:50:29 -07:00