This repository was archived by the owner on Aug 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
src/main/java/com/spotify/dns Expand file tree Collapse file tree Original file line number Diff line number Diff line change 313313 <dependency >
314314 <groupId >com.spotify</groupId >
315315 <artifactId >${project.artifactId}</artifactId >
316- <version >3.0.2 </version >
316+ <version >3.3.0 </version >
317317 </dependency >
318318 </oldVersion >
319319 <newVersion >
322322 </file >
323323 </newVersion >
324324 <parameter >
325+ <overrideCompatibilityChangeParameters >
326+ <overrideCompatibilityChangeParameter >
327+ <compatibilityChange >METHOD_ABSTRACT_NOW_DEFAULT</compatibilityChange >
328+ <binaryCompatible >true</binaryCompatible >
329+ <sourceCompatible >true</sourceCompatible >
330+ <semanticVersionLevel >PATCH</semanticVersionLevel >
331+ </overrideCompatibilityChangeParameter >
332+ </overrideCompatibilityChangeParameters >
325333 <breakBuildOnBinaryIncompatibleModifications >true</breakBuildOnBinaryIncompatibleModifications >
326334 <onlyBinaryIncompatible >true</onlyBinaryIncompatible >
327335 </parameter >
Original file line number Diff line number Diff line change @@ -45,5 +45,7 @@ public interface DnsSrvResolver {
4545 * @return a possibly empty list of matching records
4646 * @throws DnsException if there was an error doing the DNS lookup
4747 */
48- CompletionStage <List <LookupResult >> resolveAsync (String fqdn );
48+ default CompletionStage <List <LookupResult >> resolveAsync (String fqdn ) {
49+ throw new java .lang .UnsupportedOperationException ("Not implemented" );
50+ }
4951}
You can’t perform that action at this time.
0 commit comments