1
0
mirror of https://github.com/moparisthebest/davmail synced 2025-02-28 09:21:49 -05:00

Revert to simple class names in thread names

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@552 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-05-04 22:31:06 +00:00
parent 261949881e
commit 3a3483cd7d
4 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ public class ImapConnection extends AbstractConnection {
// Initialize the streams and start the thread // Initialize the streams and start the thread
public ImapConnection(Socket clientSocket) { public ImapConnection(Socket clientSocket) {
super(ImapConnection.class.getName(), clientSocket, null); super(ImapConnection.class.getSimpleName(), clientSocket, null);
} }
@Override public void run() { @Override public void run() {

View File

@ -279,7 +279,7 @@ public class LdapConnection extends AbstractConnection {
// Initialize the streams and start the thread // Initialize the streams and start the thread
public LdapConnection(Socket clientSocket) { public LdapConnection(Socket clientSocket) {
super(LdapConnection.class.getName(), clientSocket); super(LdapConnection.class.getSimpleName(), clientSocket);
try { try {
is = new BufferedInputStream(client.getInputStream()); is = new BufferedInputStream(client.getInputStream());
os = new BufferedOutputStream(client.getOutputStream()); os = new BufferedOutputStream(client.getOutputStream());

View File

@ -23,7 +23,7 @@ public class PopConnection extends AbstractConnection {
// Initialize the streams and start the thread // Initialize the streams and start the thread
public PopConnection(Socket clientSocket) { public PopConnection(Socket clientSocket) {
super(PopConnection.class.getName(), clientSocket, null); super(PopConnection.class.getSimpleName(), clientSocket, null);
} }
protected long getTotalMessagesLength() { protected long getTotalMessagesLength() {

View File

@ -23,7 +23,7 @@ public class SmtpConnection extends AbstractConnection {
// Initialize the streams and start the thread // Initialize the streams and start the thread
public SmtpConnection(Socket clientSocket) { public SmtpConnection(Socket clientSocket) {
super(SmtpConnection.class.getName(), clientSocket, null); super(SmtpConnection.class.getSimpleName(), clientSocket, null);
} }
@Override @Override