Updating arg check in OSGiWrapper
Change-Id: I523bddf2501535e4162de0703a48089ec4c8ebc2
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -74,7 +74,7 @@ public class OSGiWrapper { | ... | @@ -74,7 +74,7 @@ public class OSGiWrapper { |
| 74 | private String webContext; | 74 | private String webContext; |
| 75 | 75 | ||
| 76 | public static void main(String[] args) { | 76 | public static void main(String[] args) { |
| 77 | - if (args.length < 10) { | 77 | + if (args.length < 11) { |
| 78 | System.err.println("Not enough args"); | 78 | System.err.println("Not enough args"); |
| 79 | System.exit(1); | 79 | System.exit(1); |
| 80 | } | 80 | } | ... | ... |
-
Please register or login to post a comment