From 6f28188a2771004d8e4a56e60df6ef57013ef545 Mon Sep 17 00:00:00 2001 From: Sean Southern Date: Thu, 3 Sep 2015 10:43:54 -0800 Subject: [PATCH] Remove some excess whitespace in Label type Remove a line and a half of excess tabs in the middle of the toLabelVector() method of the Label class --- src/cc/mallet/types/Label.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cc/mallet/types/Label.java b/src/cc/mallet/types/Label.java index b5dae682b..e9c67214f 100644 --- a/src/cc/mallet/types/Label.java +++ b/src/cc/mallet/types/Label.java @@ -163,8 +163,7 @@ public int indexAtLocation (int loc) public LabelVector toLabelVector () { - return new LabelVector ((LabelAlphabet)dictionary, - new int[] {index}, new double[] {weightOfLabel}); + return new LabelVector ((LabelAlphabet)dictionary, new int[] {index}, new double[] {weightOfLabel}); } public boolean equals (Object l) {