Skip to content

Commit

Permalink
Add missing Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Nov 18, 2023
1 parent 4294667 commit 81ecec6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/com/evolvedbinary/cql/parser/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ public class Main {

/**
* Expects a Corpus Query Language expression as arg[0]
* and then prints the parse tree
* and then prints the parse tree.
*
* @param args any program arguments, first argument
* is expected to be a String to parse.
*
* @throws IOException is an error occurs parsing the input
*/
public static void main(final String args[]) throws IOException {
final ANTLRInputStream is = new ANTLRInputStream(args[0]);
Expand Down

0 comments on commit 81ecec6

Please sign in to comment.