Skip to content

Commit 295bc96

Browse files
Benjamin PeterBenjamin Peter
authored andcommitted
DefaultFormatterTest: remove throws declaration to pass quality gate
1 parent b2e5413 commit 295bc96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chartfx-chart/src/test/java/io/fair_acc/chartfx/axes/spi/format/DefaultFormatterTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class DefaultFormatterTest {
1010

1111
@Test
12-
void formatAndParsingWorks() throws Exception {
12+
void formatAndParsingWorks() {
1313
DefaultFormatter formatter = new DefaultFormatter();
1414
formatter.updateFormatter(DoubleArrayList.wrap(new double[]{1e-5, 10}), 1.);
1515

@@ -22,7 +22,7 @@ void formatAndParsingWorks() throws Exception {
2222
}
2323

2424
@Test
25-
void formatAndParsingWorksWithExponentialSeparator() throws Exception {
25+
void formatAndParsingWorksWithExponentialSeparator() {
2626
DefaultFormatter formatter = new DefaultFormatter() {
2727
{
2828
formatter.setExponentialSeparator('\u202F');

0 commit comments

Comments
 (0)