Skip to content

Commit

Permalink
Remove debug - 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
virustotalop committed Feb 1, 2023
1 parent bdc1b50 commit ba42764
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repositories {
maven { url 'https://jitpack.io' }
}
compile 'com.github.clubobsidian:wrappy:2.5.0'
compile 'com.github.clubobsidian:wrappy:2.5.1'
```

### Maven
Expand All @@ -43,7 +43,7 @@ compile 'com.github.clubobsidian:wrappy:2.5.0'
<dependency>
<groupId>com.github.clubobsidian</groupId>
<artifactId>wrappy</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
shadowJar {
baseName = 'wrappy'
classifier = null
version = '2.5.0'
version = '2.5.1'
}

artifacts {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ public void inject(Collection<NodeTransformer> transformers) {
}
if (this.isConfigHolder(fieldClazz)) {
Object holder = this.getField(field);
System.out.println(holder.getClass().getName());
ConfigurationSection pathSection = this.config.getConfigurationSection(nodePath);
System.out.println(pathSection.getKeys());
new ConfigurationInjector(pathSection, holder).inject(transformers);
break;
} else if(fieldClazz.equals(Map.class)) {
Expand Down

0 comments on commit ba42764

Please sign in to comment.