diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2021-07-11 14:21:40 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2021-07-16 23:47:29 +0200 |
commit | e0ba98edd2b40876aa7aaae4b59a24ae2412a20a (patch) | |
tree | 60062db5702d9573305f82c6e7911f069ac83e16 /org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ObjectIdMatcher.java | |
parent | 13777a3a6265ee68966547e69de83410e0621dfc (diff) | |
download | jgit-e0ba98edd2b40876aa7aaae4b59a24ae2412a20a.tar.gz jgit-e0ba98edd2b40876aa7aaae4b59a24ae2412a20a.zip |
Update orbit to I20210711110031
and update
- assertj to 3.20.2.v20210706-1104
- hamcrest to 2.2.0.v20210711-0821
- classes which were in org.hamcrest.core 1.3 and org.hamcrest.library
1.3 were all moved to org.hamcrest in 2.2
- the annotation org.hamcrest.Factory was removed and is no longer
needed
- junit 4.13 requires hamcrest-core and hamcrest-library 1.3 therefore
keep them in the target platform
CQ: 23501
Change-Id: Ife871c0343b611be9203aed7f86577e85bbf5c95
Diffstat (limited to 'org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ObjectIdMatcher.java')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ObjectIdMatcher.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ObjectIdMatcher.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ObjectIdMatcher.java index c3df19a230..77e8afb2b9 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ObjectIdMatcher.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/ObjectIdMatcher.java @@ -16,7 +16,6 @@ import java.util.stream.Collectors; import org.eclipse.jgit.lib.ObjectId; import org.eclipse.jgit.lib.Sets; import org.hamcrest.Description; -import org.hamcrest.Factory; import org.hamcrest.Matcher; import org.hamcrest.TypeSafeMatcher; @@ -59,7 +58,6 @@ class ObjectIdMatcher extends TypeSafeMatcher<Collection<ObjectId>> { * @return true if examined and specified sets contains exactly the same * elements. */ - @Factory static Matcher<Collection<ObjectId>> hasOnlyObjectIds( String... oids) { return new ObjectIdMatcher(Sets.of(oids)); |