Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Test case for some public method in AbstractMavenReportRenderer.
*/
public class AbstractMavenReportRendererTest {
class AbstractMavenReportRendererTest {
private static List<String> applyPattern(String pattern) throws Throwable {
try {
Method method = AbstractMavenReportRenderer.class.getDeclaredMethod("applyPattern", String.class);
Expand Down Expand Up @@ -68,7 +68,7 @@ private static void checkPatternIllegalArgument(String cause, String pattern) th
* @throws Throwable if any
*/
@Test
public void testApplyPattern() throws Throwable {
void applyPattern() throws Throwable {
// the most simple test
checkPattern("test {text,url}", new String[] {"test ", null, "text", "url"});

Expand Down