This commit is contained in:
Stephane Nicoll 2022-04-12 08:01:55 +02:00
parent 069aab37cd
commit 3c37fa2edf
2 changed files with 3 additions and 1 deletions

View File

@ -38,8 +38,10 @@ public class FileNativeConfigurationWriter extends NativeConfigurationWriter {
private final Path basePath;
@Nullable
private final String groupId;
@Nullable
private final String artifactId;
public FileNativeConfigurationWriter(Path basePath) {

View File

@ -179,7 +179,7 @@ class BasicJsonWriterTests {
@Test
void writeWithTypeReferenceForSimpleClass() {
assertStringAttribute(TypeReference.of(String.class), "java.lang.String");
assertStringAttribute(TypeReference.of(String.class), "java.lang.String");
}
@Test