Skip to content

Commit

Permalink
0003766: Starting service gets NumberFormatException
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 24, 2018
1 parent 4e5a37e commit d8c6675
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -375,7 +375,7 @@ protected int readPidFromFile(String filename) {
pid = Integer.parseInt(reader.readLine());
reader.close();
} catch (FileNotFoundException e) {
} catch (IOException e) {
} catch (Exception e) {
e.printStackTrace();
}
return pid;
Expand Down

0 comments on commit d8c6675

Please sign in to comment.