Skip to content

Commit

Permalink
spotless fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoScaletta committed Feb 21, 2025
1 parent d11f8a0 commit ec13a29
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions key.core/src/main/java/de/uka/ilkd/key/proof/io/KeYFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
import de.uka.ilkd.key.util.ProgressMonitor;
import de.uka.ilkd.key.util.parsing.BuildingIssue;

import org.antlr.v4.runtime.misc.ParseCancellationException;
import org.key_project.util.collection.DefaultImmutableSet;
import org.key_project.util.collection.ImmutableSet;
import org.key_project.util.collection.Immutables;

import org.antlr.v4.runtime.misc.ParseCancellationException;
import org.jspecify.annotations.NonNull;
import org.jspecify.annotations.Nullable;
import org.slf4j.Logger;
Expand Down Expand Up @@ -217,10 +217,9 @@ public Includes readIncludes() throws ProofInputException {
KeyAst.File ctx = getParseContext();
includes =
ctx.getIncludes(file.file().getAbsoluteFile().getParentFile().toURI().toURL());
} catch (ParseCancellationException e){
} catch (ParseCancellationException e) {
throw new ParseCancellationException(e);
}
catch (Exception e) {
} catch (Exception e) {
throw new ProofInputException(e);
}
}
Expand Down

0 comments on commit ec13a29

Please sign in to comment.