Skip to content

Commit

Permalink
Fix indentation (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
dr0i committed Dec 2, 2024
1 parent 57f6a71 commit 8305caf
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void issue330ShouldOptionallyRecognizeRecordsWithoutNamespace()

@Test
public void shouldRecognizeRecordsWithoutNamespace()
throws SAXException {
throws SAXException {
final AttributesImpl attributes = new AttributesImpl();

marcXmlHandler.setNamespace("");
Expand All @@ -164,7 +164,7 @@ public void shouldRecognizeRecordsWithoutNamespace()

@Test
public void shouldNotRecognizeRecordsWithNamespaceWhenOptionallyWithoutNamespace()
throws SAXException {
throws SAXException {
final AttributesImpl attributes = new AttributesImpl();

marcXmlHandler.setNamespace("");
Expand All @@ -176,7 +176,7 @@ public void shouldNotRecognizeRecordsWithNamespaceWhenOptionallyWithoutNamespace

@Test
public void issue569ShouldRecognizeRecordsWithAndWithoutNamespace()
throws SAXException {
throws SAXException {
final AttributesImpl attributes = new AttributesImpl();

marcXmlHandler.setIgnoreNamespace(true);
Expand All @@ -192,7 +192,7 @@ public void issue569ShouldRecognizeRecordsWithAndWithoutNamespace()

@Test
public void issue569ShouldRecognizeRecordsWithAndWithoutNamespaceOrderIndependently()
throws SAXException {
throws SAXException {
final AttributesImpl attributes = new AttributesImpl();

marcXmlHandler.setIgnoreNamespace(true);
Expand All @@ -209,7 +209,7 @@ public void issue569ShouldRecognizeRecordsWithAndWithoutNamespaceOrderIndependen

@Test
public void issue569ShouldNotRecognizeRecordsWithAndWithoutNamespace()
throws SAXException {
throws SAXException {
final AttributesImpl attributes = new AttributesImpl();

marcXmlHandler.setIgnoreNamespace(false);
Expand Down

0 comments on commit 8305caf

Please sign in to comment.