Skip to content

Commit

Permalink
remove unuseful print
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Oct 2, 2024
1 parent b82c705 commit 8077405
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,6 @@ public static long getFileSize(URL url) {
throw new Exception( "Unable to connect to: " + url );
long size = conn.getContentLengthLong();
conn.disconnect();
System.out.println( "Size of file: " + url + " is: " + size + " bytes" );
return size;
} catch (IOException e) {
throw new RuntimeException(e);
Expand Down

0 comments on commit 8077405

Please sign in to comment.