Stops printing exceptions to the console when a class to load at start-up is not found

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2206 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-01-13 18:20:18 +00:00 committed by gdombiak
parent 4dfb2b08fa
commit d25d36448e
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,6 @@
package org.jivesoftware.smack;
import java.io.*;
import java.lang.reflect.*;
import java.net.*;
import java.util.*;
@ -138,7 +137,8 @@ public final class SmackConfiguration {
Class.forName(className);
}
catch (ClassNotFoundException cnfe) {
cnfe.printStackTrace();
// TODO Replace the printStackTrace to the console with a logger system
//cnfe.printStackTrace();
}
}