Skip to content

Commit 60b8477

Browse files
committed
#1146 fresh qulice
1 parent 139e297 commit 60b8477

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ SOFTWARE.
475475
<plugin>
476476
<groupId>com.qulice</groupId>
477477
<artifactId>qulice-maven-plugin</artifactId>
478-
<version>0.21.1</version>
478+
<version>0.22.0</version>
479479
<configuration>
480480
<excludes>
481481
<exclude>checkstyle:/src/site/resources/.*</exclude>

src/it/file-manager/src/test/java/org/takes/it/fm/AppITCase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
* Test case for {@link App}.
3636
* @since 0.16
3737
*/
38-
public final class AppITCase {
38+
final class AppITCase {
3939

4040
/**
4141
* Home with Takes server.
4242
*/
4343
private static final String HOME = System.getProperty("takes.home");
4444

4545
@Test
46-
public void justWorks() throws Exception {
46+
void justWorks() throws Exception {
4747
Assertions.assertNotNull(AppITCase.HOME);
4848
new JdkRequest(String.format("%s/f", AppITCase.HOME))
4949
.through(VerboseWire.class)

src/it/file-manager/src/test/java/org/takes/it/fm/AppTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
* Test case for {@link org.takes.http.FtBasic}.
4242
* @since 0.1
4343
*/
44-
public final class AppTest {
44+
final class AppTest {
4545

4646
@Test
47-
public void justWorks(@TempDir final Path temp) throws Exception {
47+
void justWorks(@TempDir final Path temp) throws Exception {
4848
final File dir = temp.toFile();
4949
Files.write(new File(dir, "hello.txt").toPath(), "hello, world!".getBytes());
5050
new FtRemote(new App(dir)).exec(

src/test/java/org/takes/rq/RqFakeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* @since 0.24
3939
*/
4040
@SuppressWarnings("PMD.AvoidUsingHardCodedIP")
41-
public final class RqFakeTest {
41+
final class RqFakeTest {
4242

4343
@Test
4444
void conformsToEquality() {

0 commit comments

Comments
 (0)