avoid search by offset in copy, use marker instead

This commit is contained in:
Anna.Kozlova
2017-11-30 11:37:53 +01:00
parent e67db80f4c
commit a683df3efd
6 changed files with 30 additions and 25 deletions

View File

@@ -7,6 +7,6 @@ class Foo<T> {
class Constructors {
public static void main(String[] args) {
Foo<Number> foo2 = new Foo<>(1);
Foo<Number> foo2 = new Foo<Number>(1);
}
}