Skip to content

Commit 0a593f4

Browse files
gselzerctrueden
authored andcommitted
OpEnvironment: remove unused treeFromInfo methods
1 parent 8888b75 commit 0a593f4

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

scijava-ops-api/src/main/java/org/scijava/ops/api/OpEnvironment.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -202,13 +202,6 @@ default <T> T opFromSignature(final String signature,
202202

203203
InfoTree treeFromSignature(final String signature);
204204

205-
default InfoTree treeFromInfo(final OpInfo info, final Nil<?> specialType) {
206-
return treeFromInfo(info, specialType, getDefaultHints());
207-
}
208-
209-
InfoTree treeFromInfo(final OpInfo info, final Nil<?> specialType,
210-
final Hints hints);
211-
212205
/**
213206
* <p>
214207
* Entry point for convenient Op calls, providing a builder-style interface to

scijava-ops-engine/src/main/java/org/scijava/ops/engine/impl/DefaultOpEnvironment.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,6 @@ public <T> T op( //
215215
return findOp(opName, specialType, inTypes, outType, hints).asOpType();
216216
}
217217

218-
@Override
219-
public InfoTree treeFromInfo(OpInfo info, Nil<?> specialType, Hints hints) {
220-
return findOp(info, specialType, hints).infoTree();
221-
}
222-
223218
@Override
224219
public <T> T opFromInfoTree(final InfoTree tree, final Nil<T> specialType,
225220
Hints hints)

0 commit comments

Comments
 (0)