Skip to content

Commit

Permalink
Merge branch 'SRU2023' into SRU2023_v10
Browse files Browse the repository at this point in the history
  • Loading branch information
zubri authored Jun 14, 2023
2 parents 2353ab0 + d178341 commit 6c38831
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#### 10.1.0 - SNAPSHOT
* Migration to Java 11
* Migration to Jakarta EE 10
* (PW-1323) Fixing getValue method for pattern issue in Field44J
* (GH-163) Remove unnecessary padding in sender and receiver in AbstractMT#creeate(number, sender, receiver) method
* (PW-1323) Fixing missing pattern issue in Field44J

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,13 @@ public void parse(final String value) {
@Override
public String getValue() {
final StringBuilder result = new StringBuilder();
//FIXME serialization S[/S][/S]
// @NotImplemented
int notImplemented;
append(result, 1);
if (getComponent2() != null) {
result.append("/").append(getComponent2());
}
if (getComponent3() != null) {
result.append("/").append(getComponent3());
}
return result.toString();
}

Expand Down

0 comments on commit 6c38831

Please sign in to comment.