Skip to content

Commit 9ec7f80

Browse files
committed
fix track2Pattern configuration
closes #533
1 parent afb3977 commit 9ec7f80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jpos/src/main/java/org/jpos/transaction/participant/CheckFields.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void setConfiguration (Configuration cfg) {
8282
}
8383
String t2 = cfg.get("track2-pattern", null);
8484
if (t2 != null) {
85-
track2Pattern = Pattern.compile(t1);
85+
track2Pattern = Pattern.compile(t2);
8686
}
8787
}
8888

0 commit comments

Comments
 (0)