Skip to content

Commit

Permalink
Merge pull request #79 from apache/gu
Browse files Browse the repository at this point in the history
remove unused private method
  • Loading branch information
elharo authored Nov 30, 2020
2 parents e64f9d9 + 48152b2 commit 09aee22
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
Expand Down Expand Up @@ -190,14 +189,6 @@ private static class CrcAndSize

private long size;

CrcAndSize( File file ) throws IOException
{
try ( FileInputStream inputStream = new FileInputStream( file ) )
{
load( inputStream );
}
}

CrcAndSize( InputStream inputStream ) throws IOException
{
load( inputStream );
Expand Down

0 comments on commit 09aee22

Please sign in to comment.