Skip to content

Commit

Permalink
JavaDoc only @return org.hamcrest.integration
Browse files Browse the repository at this point in the history
  • Loading branch information
nhojpatrick committed Feb 13, 2022
1 parent fce23bf commit e9f7fc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public class EasyMock2Adapter implements IArgumentMatcher {
* Hamcrest {@link org.hamcrest.Matcher} to act as an
* EasyMock {@link org.easymock.IArgumentMatcher} and
* report it to EasyMock so it can be kept track of.
*
* @return The EasyMock matcher.
*/
public static IArgumentMatcher adapt(Matcher<?> matcher) {
EasyMock2Adapter easyMock2Matcher = new EasyMock2Adapter(matcher);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public class JMock1Adapter implements Constraint {
* Convenience factory method that will adapt a
* Hamcrest {@link org.hamcrest.Matcher} to act as an
* jMock {@link org.jmock.core.Constraint}.
*
* @return The jMock constraint.
*/
public static Constraint adapt(Matcher<?> matcher) {
return new JMock1Adapter(matcher);
Expand Down

0 comments on commit e9f7fc8

Please sign in to comment.