Skip to content

Commit ba55676

Browse files
committed
Codacy issues fix #43
1 parent 358a284 commit ba55676

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111

1212
- Sample GraalVMReflectConfigGenerator
13-
- added [org.fugerit.java/native-helper.graalvm](https://github.com/fugerit-org/native-helper-graalvm) dependency 1.0.0
13+
- <https://github.com/fugerit-org/native-helper-graalvm> version 1.0.0
1414

1515
### Changed
1616

fj-daogen-base/src/main/java/org/fugerit/java/daogen/base/gen/GraalVMReflectConfigGenerator.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ public class GraalVMReflectConfigGenerator extends DaogenBasicGenerator {
2121

2222
public static final String KEY = GraalVMReflectConfigGenerator.class.getSimpleName();
2323

24-
public GraalVMReflectConfigGenerator() {
25-
super();
26-
}
27-
2824
@Override
2925
public String getKey() {
3026
return KEY;
@@ -54,7 +50,7 @@ private void handleEntity(DaogenCatalogEntity entity, List<Entry> reflectConfig
5450
log.info( "name : {}", name );
5551
entry.setName( name );
5652
reflectConfig.add( entry );
57-
org.fugerit.java.nhg.reflect.config.EntryMethod initMethod = new EntryMethod();
53+
EntryMethod initMethod = new EntryMethod();
5854
initMethod.setName( "<init>" );
5955
List<EntryMethod> methods = new ArrayList<>();
6056
methods.add( initMethod );

0 commit comments

Comments
 (0)