abdurrahimagca / AtmProject

Multiple variables declared on the same line JAVA-C1003
Style
Major
2 occurrences in this check
Multiple variable declared on the same line
 67  // todo: para gönder
 68  public static boolean transfer(String id, String IBAN, double amount) {
 69    // todo: kullanici kendi ibanina transfer para
 70    double depositSender, depositReceiver; 71    String temp = SqlQuery.StringGetSQL("SELECT deposit FROM clients WHERE id=" + id, "deposit");
 72    depositSender = stringToDouble(temp);
 73    depositSender = depositSender - amount;
Multiple variable declared on the same line
 96
 97  // todo: borç öde
 98  public static boolean payOffDebt(String id, double amount) {
 99    double deposit, debt;100    String temp = SqlQuery.StringGetSQL("SELECT debt FROM clients WHERE id=" + id, "debt");
101    debt = stringToDouble(temp);
102    temp = SqlQuery.StringGetSQL("SELECT deposit FROM clients WHERE id=" + id, "deposit");