Skip to content
Snippets Groups Projects
Verified Commit 474b63c0 authored by Miles Vella's avatar Miles Vella
Browse files

fix exception path

parent beb1bd74
No related branches found
No related tags found
No related merge requests found
Pipeline #151312 passed
......@@ -638,12 +638,12 @@ public static final class <name>Set implements BObject, Iterable\<<name>\> {
@Override
public boolean hasNext() {
throw new java.util.UnsupportedOperationException("freetype enumeration not supported");
throw new UnsupportedOperationException("freetype enumeration not supported");
}
@Override
public <name> next() {
throw new java.util.UnsupportedOperationException("freetype enumeration not supported");
throw new UnsupportedOperationException("freetype enumeration not supported");
}
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment