Skip to content

Commit

Permalink
#71 aspects up to 0.25.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Aug 7, 2023
1 parent 7730129 commit 1aa1c19
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
docker:
image: yegor256/rultor-image:1.13.0
image: yegor256/rultor-image:1.21.0
assets:
settings.xml: yegor256/home#assets/jcabi/settings.xml
secring.gpg: yegor256/home#assets/secring.gpg
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aspects</artifactId>
<version>0.24.1</version>
<version>0.25.1</version>
</dependency>
<dependency>
<groupId>com.jcabi</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@
*/
package com.jcabi.matchers;

import com.jcabi.aspects.Tv;
import java.util.ArrayList;
import java.util.List;
import org.hamcrest.Description;
import org.hamcrest.DiagnosingMatcher;
import org.hamcrest.Matcher;
import org.hamcrest.core.AllOf;

/**
* Matcher that test if all matchers matches, but print info about only that
* ones who failed.
*
* Based in {@link AllOf}
* Based in {@link AllOf}.
*
* @param <T> Type of argument
* @since 0.2.6
Expand All @@ -66,7 +66,7 @@ final class AllOfThatPrintsOnlyWrongMatchers<T> extends DiagnosingMatcher<T> {
) {
super();
this.matchers = iterable;
this.wrong = new ArrayList<Matcher<? super T>>(Tv.THREE);
this.wrong = new ArrayList<>(3);
}

@Override
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/jcabi/matchers/JaxbConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import javax.xml.bind.JAXBException;
import javax.xml.bind.JAXBIntrospector;
import javax.xml.bind.Marshaller;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import javax.xml.transform.Source;
Expand Down

0 comments on commit 1aa1c19

Please sign in to comment.