aws-lightsail-loadbalancer/src/main/java/software/amazon/lightsail/loadbalancer/helpers/resource/LoadBalancer.java [192:202]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Set<String> setDifference(Set<String> setOne, Set<String> setTwo) {
        if (setOne == null || setOne.size() == 0) {
            return new HashSet<>();
        }
        if (setTwo == null || setTwo.size() == 0) {
            return setOne == null ? new HashSet<>() : setOne;
        }
        Set<String> result = new HashSet<String>(setOne);
        result.removeIf(setTwo::contains);
        return result;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-lightsail-bucket/src/main/java/software/amazon/lightsail/bucket/helpers/resource/Bucket.java [196:206]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Set<String> setDifference(Set<String> setOne, Set<String> setTwo) {
        if (setOne == null || setOne.size() == 0) {
            return new HashSet<>();
        }
        if (setTwo == null || setTwo.size() == 0) {
            return setOne == null ? new HashSet<>() : setOne;
        }
        Set<String> result = new HashSet<String>(setOne);
        result.removeIf(setTwo::contains);
        return result;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



