File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
hamcrest-core/src/main/java/org/hamcrest/core Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 227
227
<attribute name =" classpath" description =" Anything additional to add on the classpath" default =" " />
228
228
<sequential >
229
229
<mkdir dir =" build/temp/@{ destjar } .contents" />
230
- <javac srcdir =" @{ srcdir } " destdir =" build/temp/@{ destjar } .contents" debug =" ${ debug } " >
230
+ <javac srcdir =" @{ srcdir } " destdir =" build/temp/@{ destjar } .contents" debug =" ${ debug } " target = " 1.5 " >
231
231
<classpath >
232
232
<fileset dir =" lib/integration" >
233
233
<include name =" *.jar" />
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ private static boolean areEqual(Object o1, Object o2) {
41
41
42
42
private static boolean areArraysEqual (Object o1 , Object o2 ) {
43
43
return areArrayLengthsEqual (o1 , o2 )
44
- && areArrayElementsEqual (o1 , o2 );
44
+ && areArrayElementsEqual (o1 , o2 );
45
45
}
46
46
47
47
private static boolean areArrayLengthsEqual (Object o1 , Object o2 ) {
@@ -64,7 +64,7 @@ private static boolean isArray(Object o) {
64
64
* {@link java.lang.Object#equals} invokedMethod?
65
65
*/
66
66
@ Factory
67
- public static <T > Matcher <? super T > equalTo (T operand ) {
67
+ public static <T > Matcher <T > equalTo (T operand ) {
68
68
return new IsEqual <T >(operand );
69
69
}
70
70
}
You can’t perform that action at this time.
0 commit comments