commons/src/main/java/com/epam/eco/schemacatalog/client/CachedExtendedSchemaRegistryClient.java [530:537]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void deleteSubjectCompatibility(String subject) {
        Validate.notBlank(subject, "Subject is blank");
        try {
            deleteCompatibility(subject);
        } catch (IOException | RestClientException e) {
            throw new RuntimeException(e);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons/src/main/java/com/epam/eco/schemacatalog/client/MockExtendedSchemaRegistryClient.java [409:416]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void deleteSubjectCompatibility(String subject) {
        Validate.notBlank(subject, "Subject is blank");
        try {
            deleteCompatibility(subject);
        } catch (IOException | RestClientException e) {
            throw new RuntimeException(e);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



