Skip to content

Commit 963cf9b

Browse files
committed
Format
1 parent 7ec2103 commit 963cf9b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

datamodel/odata-generator-utility/src/main/java/com/sap/cloud/sdk/datamodel/odata/utility/ServiceNameMappings.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525
@Slf4j
2626
public class ServiceNameMappings
2727
{
28+
private static final String DELIMITER_SHORT = "=";
29+
private static final String DELIMITER_LONG = " = ";
30+
private final Path file;
31+
private final Map<Key, Value> mappings = new LinkedHashMap<>();
32+
2833
private record Key( @Nonnull String key )
2934
{
3035
}
@@ -33,11 +38,6 @@ private record Value( @Nonnull String value, @Nonnull String comment )
3338
{
3439
}
3540

36-
private static final String DELIMITER_SHORT = "=";
37-
private static final String DELIMITER_LONG = " = ";
38-
private final Path file;
39-
private final Map<Key, Value> mappings = new LinkedHashMap<>();
40-
4141
/**
4242
* Creates a new instance of {@link ServiceNameMappings} with the specified file.
4343
*

0 commit comments

Comments
 (0)