Skip to content

Commit

Permalink
SatzTyp.hasSparte wieder zurückgedreht
Browse files Browse the repository at this point in the history
  • Loading branch information
oboehm committed Apr 11, 2024
1 parent 2610ed7 commit c2caa28
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ Aus Gründen der Übersichtlichkeit sind bei älteren Versionen die einzelnen Pa

- Teildatensatz.getFeld(int) auf maximale Feld-Anzahl beschränkt

### Breaking Changes

- SatzTyp.hasSparte() liefert true, wenn laut GDV ein Spartenteil vorhanden ist (auch wenn 0 im Spartenteil steht)


## [7.0.1] - 2024-01-26

Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/java/gdv/xport/util/SatzTyp.java
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ public int getGdvSatzartNummer() {
* @return true, if successful
*/
public boolean hasSparte() {
return teil.length > 1 && teil[1] > 0;
return teil.length > 1;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/src/test/java/gdv/xport/util/SatzTypTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public void testSatzTyp100() {
@Test
public void testSatzTyp210() {
SatzTyp x = SatzTyp.of("0210.000");
//assertTrue(x.hasSparte());
assertTrue(x.hasSparte());
assertEquals("0210.000", x.getGdvSatzartName());
assertEquals("000", x.getSparteAsString());
assertEquals("000", x.getSparteMitArt());
Expand Down

0 comments on commit c2caa28

Please sign in to comment.