Skip to content

Commit

Permalink
Replace NotNull with OpenRewrite's NonNull
Browse files Browse the repository at this point in the history
  • Loading branch information
ammachado committed Jun 14, 2024
1 parent 2a0212b commit cd2fcf3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package org.openrewrite.xml.internal;

import lombok.Value;
import org.jetbrains.annotations.NotNull;
import org.openrewrite.internal.lang.NonNull;

import java.util.HashMap;
import java.util.Iterator;
Expand Down Expand Up @@ -66,7 +66,7 @@ public boolean containsUri(String uri) {
return namespaces.containsValue(uri);
}

@NotNull
@NonNull
@Override
public Iterator<Map.Entry<String, String>> iterator() {
return new NamespacesIterator(this.namespaces);
Expand Down

0 comments on commit cd2fcf3

Please sign in to comment.