Updates jcabi-github to 1.1.2

This commit is contained in:
spencergibb
2022-02-18 14:54:50 -05:00
parent b5c97cfce6
commit 409a7b2439
2 changed files with 6 additions and 1 deletions

View File

@@ -31,7 +31,7 @@
<java.version>1.8</java.version>
<spring-cloud-bom.version>Hoxton.SR6</spring-cloud-bom.version>
<jcabi-github.version>1.0</jcabi-github.version>
<jcabi-github.version>1.1.2</jcabi-github.version>
<jsch-agent.version>0.0.9</jsch-agent.version>
<hibernate-validator.version>5.4.1.Final</hibernate-validator.version>
<org.eclipse.jgit-version>5.1.3.201810200350-r</org.eclipse.jgit-version>

View File

@@ -180,6 +180,11 @@ class CachingRepos implements Repos, Closeable {
return this.delegate.iterate(s);
}
@Override
public boolean exists(Coordinates coords) throws IOException {
return this.delegate.exists(coords);
}
@Override
public boolean equals(Object o) {
return this.delegate.equals(o);