Skip to content

Commit 1a1cfb9

Browse files
committed
move curly brace
1 parent 1144fd3 commit 1a1cfb9

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstJsonReport/JsonReport.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77

88
@Data
99
@Builder
10-
class JsonReport
11-
{
10+
class JsonReport {
1211
private List<JsonReportDisharmonyEntry> rankedDisharmonies;
1312
private List<String> errors;
1413
}

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstJsonReport/JsonReportDisharmonyEntry.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111

1212
@Data
1313
@Builder
14-
class JsonReportDisharmonyEntry
15-
{
14+
class JsonReportDisharmonyEntry {
1615
private static final DateTimeFormatter formatter =
1716
DateTimeFormatter.ofLocalizedDateTime( FormatStyle.SHORT )
1817
.withLocale( Locale.getDefault() )

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/ReportWriter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
import org.apache.maven.project.MavenProject;
1010

1111
@Slf4j
12-
public class ReportWriter
13-
{
12+
public class ReportWriter {
1413
public static void writeReportToDisk(
1514
final MavenProject project,
1615
final String filename,

0 commit comments

Comments
 (0)