Skip to content
This repository has been archived by the owner on May 16, 2018. It is now read-only.

Commit

Permalink
Constraint "batchbook" mit "" statt null als Defaultwert initialisieren.
Browse files Browse the repository at this point in the history
Andernfalls muss das Property immer gesetzt werden, auch wenn es nicht
genutzt wird.
  • Loading branch information
willuhn committed Apr 3, 2014
1 parent 8a77f54 commit b788aad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/org/kapott/hbci/GV/GVMultiLastB2BSEPA.java
Expand Up @@ -43,7 +43,7 @@ public GVMultiLastB2BSEPA(HBCIHandler handler, String lowlevelName, AbstractGVRL
{
super(handler, lowlevelName, result);

addConstraint("batchbook", "sepa.batchbook", null, LogFilter.FILTER_NONE);
addConstraint("batchbook", "sepa.batchbook", "", LogFilter.FILTER_NONE);
addConstraint("Total.value", "Total.value", null, LogFilter.FILTER_MOST);
addConstraint("Total.curr", "Total.curr", null, LogFilter.FILTER_NONE);
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/kapott/hbci/GV/GVMultiLastCOR1SEPA.java
Expand Up @@ -43,7 +43,7 @@ public GVMultiLastCOR1SEPA(HBCIHandler handler, String lowlevelName, AbstractGVR
{
super(handler, lowlevelName, result);

addConstraint("batchbook", "sepa.batchbook", null, LogFilter.FILTER_NONE);
addConstraint("batchbook", "sepa.batchbook", "", LogFilter.FILTER_NONE);
addConstraint("Total.value", "Total.value", null, LogFilter.FILTER_MOST);
addConstraint("Total.curr", "Total.curr", null, LogFilter.FILTER_NONE);
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/kapott/hbci/GV/GVMultiLastSEPA.java
Expand Up @@ -43,7 +43,7 @@ public GVMultiLastSEPA(HBCIHandler handler, String lowlevelName, AbstractGVRLast
{
super(handler, lowlevelName, result);

addConstraint("batchbook", "sepa.batchbook", null, LogFilter.FILTER_NONE);
addConstraint("batchbook", "sepa.batchbook", "", LogFilter.FILTER_NONE);
addConstraint("Total.value", "Total.value", null, LogFilter.FILTER_MOST);
addConstraint("Total.curr", "Total.curr", null, LogFilter.FILTER_NONE);
}
Expand Down
2 changes: 1 addition & 1 deletion src/org/kapott/hbci/GV/GVMultiUebSEPA.java
Expand Up @@ -65,7 +65,7 @@ public GVMultiUebSEPA(HBCIHandler handler, String name)
{
super(handler, name);

addConstraint("batchbook", "sepa.batchbook", null, LogFilter.FILTER_NONE);
addConstraint("batchbook", "sepa.batchbook", "", LogFilter.FILTER_NONE);
addConstraint("Total.value", "Total.value", null, LogFilter.FILTER_MOST);
addConstraint("Total.curr", "Total.curr", null, LogFilter.FILTER_NONE);
}
Expand Down

0 comments on commit b788aad

Please sign in to comment.