Skip to content

Commit

Permalink
Merge pull request #18 from noleme/bugfix/definition/service-provider…
Browse files Browse the repository at this point in the history
…-default-args

Container: fixed bug involving ServiceProvider defs without explicit arguments
  • Loading branch information
eledhwen authored Aug 20, 2021
2 parents 8569b18 + 1ec51b1 commit ae3a374
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add the following in your `pom.xml`:
<dependency>
<groupId>com.noleme</groupId>
<artifactId>noleme-vault</artifactId>
<version>0.16</version>
<version>0.16.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.noleme</groupId>
<artifactId>noleme-vault</artifactId>
<version>0.16</version>
<version>0.16.1</version>
<packaging>jar</packaging>

<name>Noleme Vault</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public ServiceProvider(String identifier, String type, String method)
this.type = type;
this.method = method;
this.closeable = false;
this.methodArgs = new Object[0];
}

public String getType()
Expand Down

0 comments on commit ae3a374

Please sign in to comment.