Skip to content

Commit

Permalink
ByteBufferOutputStream and HexPrinter are only used by in the
Browse files Browse the repository at this point in the history
edu.rit.flick.genetics package

Since they are only used there, they should sub-package it instead of
being at such a high level in the project.
  • Loading branch information
Alex Aiezza authored and Alex Aiezza committed May 5, 2016
1 parent 5b984ac commit be90bb1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/edu/rit/flick/genetics/FastFileDeflator.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

import edu.rit.flick.FileDeflator;
import edu.rit.flick.config.Configuration;
import edu.rit.util.ByteBufferOutputStream;
import edu.rit.flick.genetics.util.ByteBufferOutputStream;
import it.unimi.dsi.io.ByteBufferInputStream;
import net.lingala.zip4j.core.ZipFile;
import net.lingala.zip4j.exception.ZipException;
Expand Down
2 changes: 1 addition & 1 deletion src/edu/rit/flick/genetics/FastFileInflator.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import edu.rit.flick.FileInflator;
import edu.rit.flick.config.Configuration;
import edu.rit.util.ByteBufferOutputStream;
import edu.rit.flick.genetics.util.ByteBufferOutputStream;
import it.unimi.dsi.io.ByteBufferInputStream;
import it.unimi.dsi.lang.MutableString;
import net.lingala.zip4j.core.ZipFile;
Expand Down
2 changes: 1 addition & 1 deletion src/edu/rit/flick/genetics/FastaFileDeflator.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.Collections;
import java.util.List;

import edu.rit.util.ByteBufferOutputStream;
import edu.rit.flick.genetics.util.ByteBufferOutputStream;

/**
* @author Alex Aiezza
Expand Down
2 changes: 1 addition & 1 deletion src/edu/rit/flick/genetics/FastaFileInflator.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.Scanner;
import java.util.StringTokenizer;

import edu.rit.util.HexPrinter;
import edu.rit.flick.genetics.util.HexPrinter;

/**
* @author Alex Aiezza
Expand Down
4 changes: 2 additions & 2 deletions src/edu/rit/flick/genetics/FastqFileDeflator.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
import java.util.Collections;
import java.util.List;

import edu.rit.util.ByteBufferOutputStream;
import edu.rit.util.HexPrinter;
import edu.rit.flick.genetics.util.ByteBufferOutputStream;
import edu.rit.flick.genetics.util.HexPrinter;

/**
* @author Alex Aiezza
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* See the LICENSE for the specific language governing permissions and
* limitations under the License provided with this project.
*/
package edu.rit.util;
package edu.rit.flick.genetics.util;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* See the LICENSE for the specific language governing permissions and
* limitations under the License provided with this project.
*/
package edu.rit.util;
package edu.rit.flick.genetics.util;

import static java.lang.Integer.toHexString;

Expand Down

0 comments on commit be90bb1

Please sign in to comment.