get rid of redundant space in error message

This commit is contained in:
Anna.Kozlova
2018-11-20 13:40:02 +01:00
parent 06daef817b
commit b015644d7a
14 changed files with 23 additions and 22 deletions

View File

@@ -7,7 +7,7 @@ class Test {
final Class<? extends ClassB> bClass = null;
ClassB b = factory.create(bClass);
String str = <error descr="Incompatible types. Required String but 'create' was inferred to T:
no instance(s) of type variable(s) exist so that capture of ? extends ClassB conforms to String">factory.create(bClass);</error>
no instance(s) of type variable(s) exist so that capture of ? extends ClassB conforms to String">factory.create(bClass);</error>
}
public static class Factory {