Small fix of code from GT-2848

This commit is contained in:
ghizard 2019-05-22 11:52:14 -04:00
parent 1340268ffa
commit 55b2fe5d02
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ public class DependencyGraph<T> extends AbstractDependencyGraph<T> {
}
@Override
public AbstractDependencyGraph<T> copy() {
public DependencyGraph<T> copy() {
return new DependencyGraph<>(this);
}

View file

@ -57,7 +57,7 @@ public class DeterministicDependencyGraph<T> extends AbstractDependencyGraph<T>
}
@Override
public AbstractDependencyGraph<T> copy() {
public DeterministicDependencyGraph<T> copy() {
return new DeterministicDependencyGraph<>(this);
}