We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfa3bf9 commit 2630d11Copy full SHA for 2630d11
scijava-common3/src/main/java/org/scijava/common3/Types.java
@@ -264,13 +264,11 @@ public static Type superTypeOf(Type[] types,
264
}
265
266
267
- // We can effectively find the greatest common super type by assuming that
268
- // either:
+ // We find the greatest common super type by assuming that either:
269
// 1) superType extends a superclass of all types in types (this check is
270
// symmetric)
271
- // 2) superType implements an interface implemented by all types in typws
272
- // (this
273
- // check is symmetric)
+ // 2) superType implements an interface implemented by all types in types
+ // (this check is symmetric)
274
275
Type superType = types[0];
276
0 commit comments