Skip to content

Commit a17c4ef

Browse files
Treiblesschorlegselzer
authored andcommitted
Get things to compile and the first test to pass
1 parent adcdcb4 commit a17c4ef

13 files changed

Lines changed: 261 additions & 1208 deletions

File tree

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
</properties>
9797

9898
<dependencies>
99+
99100
<dependency>
100101
<groupId>org.scijava</groupId>
101102
<artifactId>scijava-common</artifactId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.scijava.ops;
22

33
@FunctionalInterface
4-
public interface BinaryComputerOp<I1, I2, O> extends Op {
4+
public interface BiComputer<I1, I2, O> {
55
void compute( I1 in1, I2 in2, O out );
66
}

src/main/java/org/scijava/ops/BinaryFunctionOp.java

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)