~ubuntu-branches/ubuntu/saucy/trimmomatic/saucy-proposed

« back to all changes in this revision

Viewing changes to src/org/usadellab/trimmomatic/threading/TrimLogWorker.java

  • Committer: Package Import Robot
  • Author(s): Andreas Tille, Olivier Sallou
  • Date: 2013-08-07 12:14:33 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130807121433-qxchmfrrodridtvz
Tags: 0.30+dfsg-1
* New upstream version
* debian/copyright:
   - DEP5
   - Add Files-Excluded to document what was removed from original source
* debian/watch: handle +dfsg suffix
* debian/get-orig-source: use new uscan if available
* debian/control:
   - cme fix dpkg-control
   - debhelper 9
   - use anonscm in Vcs fields
   - Build-Depends: default-jdk | ...
     Closes: #718850
[ Olivier Sallou]
    * Manage java libs with javahelper
    * Provide upstream missing MANIFEST.MF

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package org.usadellab.trimmomatic.threading;
2
2
 
3
3
import java.io.PrintStream;
4
 
import java.util.Iterator;
5
4
import java.util.List;
6
5
import java.util.concurrent.ArrayBlockingQueue;
7
6
import java.util.concurrent.Future;
8
7
import java.util.concurrent.atomic.AtomicBoolean;
9
8
 
10
 
import org.usadellab.trimmomatic.fastq.FastqRecord;
11
 
import org.usadellab.trimmomatic.fastq.FastqSerializer;
12
 
 
13
9
public class TrimLogWorker implements Runnable
14
10
{
15
11
        private PrintStream trimLogStream;