Skip to content

Commit b9e3067

Browse files
committed
Typos fixes
1 parent 3dd2d16 commit b9e3067

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/main/java/pl/wavesoftware/eid/exceptions/EidContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public interface EidContainer {
2424

2525
/**
26-
* Retrives a Eid object
26+
* Retrieves a Eid object
2727
*
2828
* @return Eid object
2929
*/

src/test/java/pl/wavesoftware/eid/exceptions/ExceptionsTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,7 @@ private static void addParameters(Map.Entry<Class<? extends EidRuntimeException>
104104
constructor,
105105
args
106106
});
107-
} catch (NoSuchMethodException ex) {
108-
throw new RuntimeException(ex);
109-
} catch (SecurityException ex) {
107+
} catch (NoSuchMethodException | SecurityException ex) {
110108
throw new RuntimeException(ex);
111109
}
112110
}

0 commit comments

Comments
 (0)