From 474b63c09d750178f42898461c775848805fbc23 Mon Sep 17 00:00:00 2001 From: Miles Vella <673-vella@users.noreply.gitlab.cs.uni-duesseldorf.de> Date: Fri, 21 Feb 2025 14:06:34 +0100 Subject: [PATCH] fix exception path --- .../resources/de/hhu/stups/codegenerator/JavaTemplate.stg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/de/hhu/stups/codegenerator/JavaTemplate.stg b/src/main/resources/de/hhu/stups/codegenerator/JavaTemplate.stg index e8cf3eda..3649535c 100644 --- a/src/main/resources/de/hhu/stups/codegenerator/JavaTemplate.stg +++ b/src/main/resources/de/hhu/stups/codegenerator/JavaTemplate.stg @@ -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"); } }; } -- GitLab