Skip to content

Commit

Permalink
. r formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsEckart committed Feb 26, 2024
1 parent e5bb61c commit d96b849
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@

public class ParseInputWith1Parameters<OUT>
{
private final String expected;
private final String expected;
private final ParseInput.ParseInputOptions options;
private final Function1<String, OUT> transformer;
public ParseInputWith1Parameters(String expected, Function1<String, OUT> transformer, ParseInput.ParseInputOptions options)
private final Function1<String, OUT> transformer;
public ParseInputWith1Parameters(String expected, Function1<String, OUT> transformer,
ParseInput.ParseInputOptions options)
{
this.expected = expected;
this.transformer = transformer;
this.options = options;
}
public static <OUT> ParseInputWith1Parameters<OUT> create(String expected, Class<OUT> type1, ParseInput.ParseInputOptions multiline)
public static <OUT> ParseInputWith1Parameters<OUT> create(String expected, Class<OUT> type1,
ParseInput.ParseInputOptions multiline)
{
return new ParseInputWith1Parameters<>(expected, ParseInput.getTransformerForClass(type1), multiline);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ParseInputWith2Parameters<IN1, IN2>
{
private final String expected;
private final Function1<String, Tuple<IN1, IN2>> transformer;
private final ParseInput.ParseInputOptions options;
private final ParseInput.ParseInputOptions options;
public ParseInputWith2Parameters(String expected, Function1<String, Tuple<IN1, IN2>> transformer,
ParseInput.ParseInputOptions options)
{
Expand Down

0 comments on commit d96b849

Please sign in to comment.