Skip to content

Commit

Permalink
[eclipse-ee4j#627]Test classes don't need to be public - fewer warnin…
Browse files Browse the repository at this point in the history
…gs about modules

Signed-off-by: Anton Pinsky <[email protected]>
  • Loading branch information
api-from-the-ion committed Nov 8, 2023
1 parent b5be735 commit 795b5db
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @author Maxence Laurent
*/
public class DefaultGetterInInterface {
class DefaultGetterInInterface {

private DefaultGetterInInterface() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.lang.reflect.Field;
import java.lang.reflect.Method;

public class FieldAccessStrategyTest {
class FieldAccessStrategyTest {

private FieldAccessStrategyTest() {
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/eclipse/yasson/Issue454Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import jakarta.json.bind.JsonbConfig;
import jakarta.json.bind.annotation.JsonbTransient;

public class Issue454Test {
class Issue454Test {

private Issue454Test() {
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/eclipse/yasson/Issue456Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import jakarta.json.bind.JsonbException;

public class Issue456Test {
class Issue456Test {

private Issue456Test() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Requires --limit-modules java.base,java.logging,java.sql (to exclude java.naming) to work.
* See pom.xml surefire plugin configuration.
*/
public class JavaxNamingExcludedTest {
class JavaxNamingExcludedTest {

private JavaxNamingExcludedTest() {
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/eclipse/yasson/SimpleTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* @author Roman Grigoriadi
*/
public class SimpleTest {
class SimpleTest {

private SimpleTest() {
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/eclipse/yasson/YassonConfigTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Tests that the names of configuration fields in {@link YassonConfig} do not change.
*/
public class YassonConfigTest {
class YassonConfigTest {

private YassonConfigTest() {}

Expand Down

0 comments on commit 795b5db

Please sign in to comment.