Skip to content

Commit 52198b0

Browse files
committed
Remove deprecated SchemaDiff#diff(HashSet, Schema, Schema, DiffContext)
1 parent bcdb601 commit 52198b0

File tree

1 file changed

+0
-6
lines changed
  • core/src/main/java/org/openapitools/openapidiff/core/compare

1 file changed

+0
-6
lines changed

core/src/main/java/org/openapitools/openapidiff/core/compare/SchemaDiff.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -277,12 +277,6 @@ private static String getSchemaRef(Schema<?> schema) {
277277
return ofNullable(schema).map(Schema::get$ref).orElse(null);
278278
}
279279

280-
@Deprecated
281-
public DeferredChanged<ChangedSchema> diff(
282-
HashSet<String> refSet, Schema left, Schema right, DiffContext context) {
283-
return this.diff(new RecursiveSchemaSet(), left, right, context);
284-
}
285-
286280
public DeferredChanged<ChangedSchema> diff(Schema left, Schema right, DiffContext context) {
287281
return this.diff(new RecursiveSchemaSet(), left, right, context);
288282
}

0 commit comments

Comments
 (0)