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

Commit

Permalink
Noch zu Pull-Request #26 - Variable von "iban" in "creditorId" umbenannt
Browse files Browse the repository at this point in the history
  • Loading branch information
willuhn committed Mar 25, 2014
1 parent abd3d7d commit 31e9842
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/org/kapott/hbci/manager/HBCIUtils.java
Expand Up @@ -1656,13 +1656,15 @@ public static boolean checkIBANCRC(String iban)
return AccountCRCAlgs.checkIBAN(iban);
}

/** Überprüfen der Gültigkeit einer Gläubiger-ID. Diese Methode prüft anhand eines
/**
* Überprüfen der Gültigkeit einer Gläubiger-ID. Diese Methode prüft anhand eines
* Prüfziffer-Algorithmus, ob die übergebene ID prinzipiell gültig ist.
* @param creditorId die zu pruefende Creditor-ID.
* @return <code>false</code> wenn der Prüfzifferntest fehlschlägt, sonst
* <code>true</code> */
public static boolean checkCredtitorIdCRC(String iban)
public static boolean checkCredtitorIdCRC(String creditorId)
{
return AccountCRCAlgs.checkCreditorId(iban);
return AccountCRCAlgs.checkCreditorId(creditorId);
}

private static void refreshBLZList(ClassLoader cl)
Expand Down

0 comments on commit 31e9842

Please sign in to comment.