File tree Expand file tree Collapse file tree
test/java/org/scijava/ops Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929
3030package org .scijava .ops ;
3131
32- import java .util .Collection ;
33-
3432import org .scijava .log .LogService ;
3533import org .scijava .ops .matcher .OpInfo ;
3634import org .scijava .ops .matcher .OpRef ;
Original file line number Diff line number Diff line change 3232
3333package org .scijava .ops .matcher ;
3434
35+ import com .google .common .base .Objects ;
36+
3537import java .lang .reflect .ParameterizedType ;
3638import java .lang .reflect .Type ;
3739import java .lang .reflect .TypeVariable ;
4648import org .scijava .util .Types ;
4749import org .scijava .util .Types .TypeVarInfo ;
4850
49- import com .google .common .base .Objects ;
50-
5151public final class MatchingUtils {
5252
5353 private MatchingUtils () {
Original file line number Diff line number Diff line change 11package org .scijava .ops .math ;
22
3+ import com .google .common .collect .Streams ;
4+
35import java .math .BigInteger ;
46import java .util .Arrays ;
57import java .util .function .BiFunction ;
1315import org .scijava .plugin .Plugin ;
1416import org .scijava .struct .ItemIO ;
1517
16- import com .google .common .collect .Streams ;
17-
1818public class Add {
1919
2020 public static final String NAMES = MathOps .ADD ;
Original file line number Diff line number Diff line change 22
33import java .lang .reflect .Field ;
44import java .lang .reflect .Type ;
5- import java .lang .reflect .TypeVariable ;
65
76import org .scijava .util .Types ;
87
Original file line number Diff line number Diff line change 3131
3232package org .scijava .util ;
3333
34+ import com .google .common .reflect .TypeToken ;
35+
3436// Portions of this class were adapted from the
3537// org.apache.commons.lang3.reflect.TypeUtils and
3638// org.apache.commons.lang3.Validate classes of
7072import java .util .Set ;
7173import java .util .stream .IntStream ;
7274
73- import com .google .common .reflect .TypeToken ;
74-
7575/**
7676 * Utility class for working with generic types, fields and methods.
7777 * <p>
Original file line number Diff line number Diff line change 2929
3030package org .scijava .ops ;
3131
32+ import com .google .common .collect .Streams ;
33+
3234import java .util .Arrays ;
3335import java .util .function .BiFunction ;
3436import java .util .function .Function ;
4244import org .scijava .ops .math .Add .MathAddDoublesFunction ;
4345import org .scijava .ops .types .Nil ;
4446
45- import com .google .common .collect .Streams ;
46-
4747public class OpsTest extends AbstractTestEnvironment {
4848
4949 private static Nil <Double > nilDouble = new Nil <Double >() {
You can’t perform that action at this time.
0 commit comments