From 6c922a02c85de914dae89e04c62bb0512d23d185 Mon Sep 17 00:00:00 2001 From: cerevisiae Date: Wed, 1 Dec 2010 21:26:18 -0600 Subject: [PATCH] Fixing words too long to fit on a single line. --- vMinecraftChat.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/vMinecraftChat.java b/vMinecraftChat.java index e0b19b786..483bda1e9 100644 --- a/vMinecraftChat.java +++ b/vMinecraftChat.java @@ -70,19 +70,14 @@ public class vMinecraftChat { String[] tempArray = wordCut(len, split.remove(0)); words.add(tempArray[0]); split.add(tempArray[1]); - log.log(Level.INFO, tempArray[0]); - log.log(Level.INFO, tempArray[1]); } //If the word is not too long to fit len += wordLength; - log.log(Level.INFO, String.valueOf(len)); if( len < 316) words.add(split.remove(0)); } //Merge them and add them to the output array. - log.log(Level.INFO, etc.combineSplit(0, - words.toArray(new String[out.size()]), " ")); out.add( etc.combineSplit(0, words.toArray(new String[out.size()]), " ") ); }