tidy up comments

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@589330 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2007-10-28 10:54:35 +00:00
parent c8761c7e0f
commit b2969d05a9
1 changed files with 1 additions and 5 deletions

View File

@ -350,15 +350,11 @@ public class AMQPersistenceAdapter implements PersistenceAdapter, UsageListener,
/**
* Cleans up the data files
*
* @return
* @throws IOException
*/
public void cleanup() {
try {
// Capture the lastDataFile so that we don't delete any data files
// after this one.
Set<Integer>inProgress = new CopyOnWriteArraySet<Integer>();
Set<Integer>inProgress = new HashSet<Integer>();
for (Set<Integer> set: dataFilesInProgress.values()) {
inProgress.addAll(set);
}