Skip to content

Commit cfa32b6

Browse files
committedApr 30, 2019
Update qulice-checkstyle to Cactoos 0.41
1 parent cdbdca3 commit cfa32b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎qulice-checkstyle/src/test/java/com/qulice/checkstyle/CheckstyleValidatorTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import org.cactoos.io.ResourceOf;
4040
import org.cactoos.list.ListOf;
4141
import org.cactoos.text.FormattedText;
42-
import org.cactoos.text.JoinedText;
42+
import org.cactoos.text.Joined;
4343
import org.cactoos.text.TextOf;
4444
import org.hamcrest.Description;
4545
import org.hamcrest.MatcherAssert;
@@ -636,7 +636,7 @@ public void rejectsUppercaseAbbreviations() throws Exception {
636636
file, false
637637
);
638638
final String name = "AbbreviationAsWordInNameCheck";
639-
final String message = new JoinedText(
639+
final String message = new Joined(
640640
" ",
641641
"Abbreviation in name '%s'",
642642
"must contain no more than '2' consecutive capital letters."

‎qulice-checkstyle/src/test/java/com/qulice/checkstyle/LicenseRule.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import java.io.IOException;
3535
import java.nio.charset.StandardCharsets;
3636
import org.apache.commons.io.FileUtils;
37-
import org.cactoos.text.JoinedText;
37+
import org.cactoos.text.Joined;
3838
import org.junit.rules.TestRule;
3939
import org.junit.runner.Description;
4040
import org.junit.runners.model.Statement;
@@ -122,7 +122,7 @@ public File file() throws IOException {
122122
FileUtils.forceDeleteOnExit(license);
123123
FileUtils.writeStringToFile(
124124
license,
125-
new JoinedText(this.eol, this.lines).asString(),
125+
new Joined(this.eol, this.lines).asString(),
126126
StandardCharsets.UTF_8
127127
);
128128
if (this.directory != null) {

1 commit comments

Comments
 (1)

0pdd commented on Apr 30, 2019

@0pdd
Collaborator

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.