Skip to content

Commit

Permalink
Fix code smells
Browse files Browse the repository at this point in the history
Signed-off-by: lisrte <[email protected]>
  • Loading branch information
Lisrte committed Jun 17, 2024
1 parent f176fc6 commit 8ea3e8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import org.junit.jupiter.api.Test;
import org.xml.sax.SAXException;

import javax.xml.stream.XMLStreamException;
import java.io.IOException;

/**
Expand Down Expand Up @@ -41,7 +40,7 @@ protected void addDynamicModels() {
}

@Test
void writeModel() throws SAXException, IOException, XMLStreamException {
void writeModel() throws SAXException, IOException {
DydXml.write(tmpDir, context);
ParametersXml.write(tmpDir, context);
validate("dyd.xsd", "empty_phase_shifter_blocking_i_dyd.xml", tmpDir.resolve(DynaWaltzConstants.DYD_FILENAME));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import org.junit.jupiter.api.Test;
import org.xml.sax.SAXException;

import javax.xml.stream.XMLStreamException;
import java.io.IOException;

/**
Expand Down Expand Up @@ -41,7 +40,7 @@ protected void addDynamicModels() {
}

@Test
void writeModel() throws SAXException, IOException, XMLStreamException {
void writeModel() throws SAXException, IOException {
DydXml.write(tmpDir, context);
ParametersXml.write(tmpDir, context);
validate("dyd.xsd", "phase_shifter_blocking_i_dyd.xml", tmpDir.resolve(DynaWaltzConstants.DYD_FILENAME));
Expand Down

0 comments on commit 8ea3e8b

Please sign in to comment.