1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 09:35:26 +02:00

Cleaned up my format . . .

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1328 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
xeology
2011-05-03 05:22:03 +00:00
parent a46bc7448b
commit ee192afcc0
6 changed files with 22 additions and 38 deletions

View File

@@ -1,15 +1,12 @@
package com.iConomy;
import com.earth2me.essentials.api.Economy;
public class banks
{
public int count(String name){
public int count(String name)
{
int count = 0;
int breaker = 0;
for (int ctr = 1; breaker != 1; ctr++)
@@ -37,17 +34,4 @@ public class banks
return count;
}
}

View File

@@ -7,7 +7,6 @@ import java.util.ArrayList;
public class Account
{
private String name;
public Holdings getHoldings()
@@ -102,6 +101,4 @@ public class Account
}
}

View File

@@ -27,11 +27,14 @@ public class Holdings
this.bankId = id;
this.name = name;
}
public boolean isBank() {
public boolean isBank()
{
return bank;
}
public double balance() {
public double balance()
{
return get();
}