Skip to content

Commit

Permalink
LL part defined as ASCII
Browse files Browse the repository at this point in the history
closes #480
  • Loading branch information
ar committed May 14, 2022
1 parent dbe9f0b commit e8c74d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jpos/src/main/java/org/jpos/iso/IFEMC_LLCHAR.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
public class IFEMC_LLCHAR extends ISOTagStringFieldPackager {
public IFEMC_LLCHAR() {
super(0, null, AsciiPrefixer.LL, NullPadder.INSTANCE,
EbcdicInterpreter.INSTANCE, AsciiPrefixer.LL);
EbcdicInterpreter.INSTANCE, EbcdicPrefixer.LL);
}
/**
* @param len - field len
* @param description symbolic descrption
*/
public IFEMC_LLCHAR (int len, String description) {
super(len, description, AsciiPrefixer.LL, NullPadder.INSTANCE,
EbcdicInterpreter.INSTANCE, AsciiPrefixer.LL);
EbcdicInterpreter.INSTANCE, EbcdicPrefixer.LL);
}
}

0 comments on commit e8c74d5

Please sign in to comment.