removed unused variable
This commit is contained in:
parent
92a9a0287f
commit
e4a6ecd30c
|
@ -17,7 +17,7 @@ public class CmdOptions {
|
||||||
|
|
||||||
private static CmdOptions instance;
|
private static CmdOptions instance;
|
||||||
|
|
||||||
public static class Option {
|
private static class Option {
|
||||||
public String name;
|
public String name;
|
||||||
public String cmdOption;
|
public String cmdOption;
|
||||||
public String longCmdOption;
|
public String longCmdOption;
|
||||||
|
@ -159,7 +159,7 @@ public class CmdOptions {
|
||||||
public void parse(String[] args) {
|
public void parse(String[] args) {
|
||||||
// now parse
|
// now parse
|
||||||
if (args.length > 0) {
|
if (args.length > 0) {
|
||||||
int l = 0, i = 0;
|
int i = 0;
|
||||||
String arg = null;
|
String arg = null;
|
||||||
// iterate through all options
|
// iterate through all options
|
||||||
for (; i < args.length; ++i) {
|
for (; i < args.length; ++i) {
|
||||||
|
|
Loading…
Reference in New Issue