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:
parent
261949881e
commit
3a3483cd7d
@ -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() {
|
||||||
|
@ -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());
|
||||||
|
@ -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() {
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user