Skip to content

Commit

Permalink
Update qulice-checkstyle to Cactoos 0.41
Browse files Browse the repository at this point in the history
  • Loading branch information
zCRUSADERz committed Apr 30, 2019
1 parent cdbdca3 commit cfa32b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.cactoos.io.ResourceOf;
import org.cactoos.list.ListOf;
import org.cactoos.text.FormattedText;
import org.cactoos.text.JoinedText;
import org.cactoos.text.Joined;
import org.cactoos.text.TextOf;
import org.hamcrest.Description;
import org.hamcrest.MatcherAssert;
Expand Down Expand Up @@ -636,7 +636,7 @@ public void rejectsUppercaseAbbreviations() throws Exception {
file, false
);
final String name = "AbbreviationAsWordInNameCheck";
final String message = new JoinedText(
final String message = new Joined(
" ",
"Abbreviation in name '%s'",
"must contain no more than '2' consecutive capital letters."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import org.apache.commons.io.FileUtils;
import org.cactoos.text.JoinedText;
import org.cactoos.text.Joined;
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
Expand Down Expand Up @@ -122,7 +122,7 @@ public File file() throws IOException {
FileUtils.forceDeleteOnExit(license);
FileUtils.writeStringToFile(
license,
new JoinedText(this.eol, this.lines).asString(),
new Joined(this.eol, this.lines).asString(),
StandardCharsets.UTF_8
);
if (this.directory != null) {
Expand Down

1 comment on commit cfa32b6

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on cfa32b6 Apr 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 966-537ebfc3 disappeared from qulice-pmd/src/test/java/com/qulice/pmd/PmdAssert.java, that's why I closed #1009. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

Please sign in to comment.