diff options
author | Pacien TRAN-GIRARD | 2014-02-23 22:27:15 +0100 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2014-02-23 22:27:15 +0100 |
commit | 990c537953dc9b8a7e5236a9c23e8978ea746348 (patch) | |
tree | 5f82b1a3ca64db30706ea8b7d4c5727215b1341a /src | |
parent | 590a932e53423d9b1cd92344ee0187972b8ed961 (diff) | |
download | esieequest-990c537953dc9b8a7e5236a9c23e8978ea746348.tar.gz |
Initialize local variable
Diffstat (limited to 'src')
-rw-r--r-- | src/esieequest/Parser.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/esieequest/Parser.java b/src/esieequest/Parser.java index cc3ff11..b8f5c94 100644 --- a/src/esieequest/Parser.java +++ b/src/esieequest/Parser.java | |||
@@ -33,7 +33,7 @@ public class Parser { | |||
33 | * @return The next command from the user. | 33 | * @return The next command from the user. |
34 | */ | 34 | */ |
35 | public Command getCommand() { | 35 | public Command getCommand() { |
36 | String vInputLine; | 36 | String vInputLine = null; |
37 | String vWord1 = null; | 37 | String vWord1 = null; |
38 | String vWord2 = null; | 38 | String vWord2 = null; |
39 | 39 | ||