Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
JastAdd
RagConnect
Commits
92454a4a
Commit
92454a4a
authored
May 03, 2020
by
Johannes Mey
Browse files
fix main method definition
parent
5f4cbbf8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/jastadd/ros2rag/compiler/Compiler.java
View file @
92454a4a
...
...
@@ -65,12 +65,12 @@ public class Compiler {
}
public
static
int
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
try
{
return
new
Compiler
().
run
(
args
);
new
Compiler
().
run
(
args
);
}
catch
(
CommandLineException
|
CompilerException
e
)
{
System
.
err
.
println
(
e
.
getMessage
());
return
1
;
System
.
exit
(-
1
)
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment