Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Brian O'Connor
2016-04-29 15:22:57 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b5c1112f9fa61f45f40e56684c4d1447b3780769
b5c1112f
1 parent
a7903ae0
Updating arg check in OSGiWrapper
Change-Id: I523bddf2501535e4162de0703a48089ec4c8ebc2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
utils/osgiwrap/src/main/java/org/onlab/osgiwrap/OSGiWrapper.java
utils/osgiwrap/src/main/java/org/onlab/osgiwrap/OSGiWrapper.java
View file @
b5c1112
...
...
@@ -74,7 +74,7 @@ public class OSGiWrapper {
private
String
webContext
;
public
static
void
main
(
String
[]
args
)
{
if
(
args
.
length
<
1
0
)
{
if
(
args
.
length
<
1
1
)
{
System
.
err
.
println
(
"Not enough args"
);
System
.
exit
(
1
);
}
...
...
Please
register
or
login
to post a comment