Author: marrs
Date: Sat Jan 22 22:45:23 2011
New Revision: 1062289
URL: http://svn.apache.org/viewvc?rev=1062289&view=rev
Log:
Properly renamed the name of an internal thread.
Modified:
felix/trunk/deploymentadmin/service/src/main/java/org/apache/felix/deploymentadmin/ExplodingOutputtingInputStream.java
Modified:
felix/trunk/deploymentadmin/service/src/main/java/org/apache/felix/deploymentadmin/ExplodingOutputtingInputStream.java
URL:
http://svn.apache.org/viewvc/felix/trunk/deploymentadmin/service/src/main/java/org/apache/felix/deploymentadmin/ExplodingOutputtingInputStream.java?rev=1062289&r1=1062288&r2=1062289&view=diff
==============================================================================
---
felix/trunk/deploymentadmin/service/src/main/java/org/apache/felix/deploymentadmin/ExplodingOutputtingInputStream.java
(original)
+++
felix/trunk/deploymentadmin/service/src/main/java/org/apache/felix/deploymentadmin/ExplodingOutputtingInputStream.java
Sat Jan 22 22:45:23 2011
@@ -42,7 +42,7 @@ import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
/**
- * This class will write all entries encountered in an inputstream to disk. An
index of files written to disk is kept in an index file in the
+ * This class will write all entries encountered in an input stream to disk.
An index of files written to disk is kept in an index file in the
* order they were encountered. Each file is compressed using GZIP. All the
work is done on a separate thread.
*/
class ExplodingOutputtingInputStream extends OutputtingInputStream implements
Runnable {
@@ -74,7 +74,7 @@ class ExplodingOutputtingInputStream ext
m_contentDir = root;
m_indexFile = index;
m_input = new PipedInputStream(output);
- m_task = new Thread(this, "LiQ - ExplodingIncomingThread");
+ m_task = new Thread(this, "Apache Felix DeploymentAdmin -
ExplodingOutputtingInputStream");
m_task.start();
}