Skip to content

Commit

Permalink
Committing what I have forgotten ;-)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Aug 4, 2016
1 parent baeb6bc commit 3b51cf1
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/**
* Utilities related to file and directory management.
*
* <p>
* Created by lfoppiano on 04/08/16.
*/
public class IOUtilities {
Expand Down Expand Up @@ -57,7 +57,6 @@ public static String readFile(String pPathToFile) throws IOException {
/**
* Write an input stream in temp directory.
*/
@Deprecated
public static File writeInputFile(InputStream inputStream) {
LOGGER.debug(">> set origin document for stateless service'...");

Expand Down Expand Up @@ -96,7 +95,6 @@ public static File writeInputFile(InputStream inputStream) {
/**
* Creates a new not used temporary file and returns it.
*/
@Deprecated
public static File newTempFile(String fileName, String extension) {
try {
return File.createTempFile(fileName, extension, GrobidProperties.getTempPath());
Expand All @@ -110,7 +108,6 @@ public static File newTempFile(String fileName, String extension) {
/**
* Delete the temporary file.
*/
@Deprecated
public static void removeTempFile(final File file) {
try {
// sanity cleaning
Expand Down

0 comments on commit 3b51cf1

Please sign in to comment.