Skip to content

Commit

Permalink
fixes #17
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Jul 2, 2021
1 parent b826251 commit 7deb344
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
JAVA_HOME: /usr/lib/jvm/java-11-openjdk
merge:
script: |-
mvn clean install -Pcheckstyle,itcases -PtestCoverage jacoco:report coveralls:report
mvn clean install -Pcheckstyle,itcases
deploy:
script: |-
echo 'Nothing to deploy'
Expand Down
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@
</scm>

<dependencies>
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>1.1.4</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public final class RestLinguinAi implements LinguinAi {
* Constructor. By default, the /v1 API base URI is being used.
* @param token Access token.
*/
public RestLinguinAi(final String token) {
private RestLinguinAi(final String token) {
this(URI.create("https://api.linguin.ai/v1"), token);
}

Expand Down

0 comments on commit 7deb344

Please sign in to comment.