Skip to content

Commit 3015b23

Browse files
committed
a reformat code
1 parent b8e5fd7 commit 3015b23

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

approvaltests/src/main/java/org/approvaltests/namer/FileCounter.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
import org.approvaltests.core.Options;
44

5-
public class FileCounter {
6-
int counter;
7-
8-
public Options next() {
9-
return new Options().forFile().withAdditionalInformation("" + ++counter);
10-
}
5+
public class FileCounter
6+
{
7+
int counter;
8+
public Options next()
9+
{
10+
return new Options().forFile().withAdditionalInformation("" + ++counter);
11+
}
1112
}

approvaltests/src/main/java/org/approvaltests/namer/NamerFactoryForOptions.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@ public Options withParameters(Options options, String... parameters)
3737
}
3838
return options;
3939
}
40-
41-
public FileCounter useMultipleFiles() {
40+
public FileCounter useMultipleFiles()
41+
{
4242
return new FileCounter();
4343
}
44-
4544
}

approvaltests/src/main/java/org/approvaltests/writers/ImageApprovalWriter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ public String getFileExtensionWithDot()
4242
{
4343
return ".png";
4444
}
45-
46-
public static Options asJreAware(Options options) {
45+
public static Options asJreAware(Options options)
46+
{
4747
return options.forFile().withAdditionalInformation(getJreInformation());
4848
}
4949
}

0 commit comments

Comments
 (0)