🏡 index : ~doyle/blockbuster.git

author Jordan Doyle <jordan.doyle@outlook.com> 2015-04-13 17:27:17.0 +00:00:00
committer Jordan Doyle <jordan.doyle@outlook.com> 2015-04-13 17:27:17.0 +00:00:00
commit
4e15e5fbdd7e54bbccb5d176b64d008028c10da4 [patch]
tree
216c87118a98585a964fb813757c0d59dd8d8aaf
parent
2878db1ab701af84a83af713519eb0cf83370310
download
master.tar.gz

Replace spaced indentation with tabs



Diff

 src/main/java/wf/doyle/blockbuster/item/LibraryItem.java | 18 ++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/wf/doyle/blockbuster/item/LibraryItem.java b/src/main/java/wf/doyle/blockbuster/item/LibraryItem.java
index 35613d2..6e93b13 100644
--- a/src/main/java/wf/doyle/blockbuster/item/LibraryItem.java
+++ b/src/main/java/wf/doyle/blockbuster/item/LibraryItem.java
@@ -149,13 +149,13 @@ public abstract class LibraryItem {
	 * @return true if we now have the item
	 */
	public boolean toggleItem()
    {
	    if(this.getLoan()) {
	    	this.returnItem();
	    	return false;
	    } else {
	    	this.takeItem();
	    	return true;
	    }
    }
	{
		if(this.getLoan()) {
			this.returnItem();
			return false;
		} else {
			this.takeItem();
			return true;
		}
	}
}