Skip to content

Commit f427816

Browse files
no lombok?
1 parent 162f471 commit f427816

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import com.google.common.base.Joiner;
1919

2020
import lombok.extern.slf4j.Slf4j;
21-
import lombok.val;
2221

2322
/**
2423
* This class is used to read and write service name mappings from a file.
@@ -53,7 +52,7 @@ private ServiceNameMappings( @Nonnull final Path file )
5352
@Nonnull
5453
public static ServiceNameMappings load( @Nonnull final Path file )
5554
{
56-
val mappings = new ServiceNameMappings(file);
55+
final ServiceNameMappings mappings = new ServiceNameMappings(file);
5756
if( Files.exists(file) ) {
5857
mappings.populateMappings();
5958
}

0 commit comments

Comments
 (0)