diff src/main/java/org/monetdb/mcl/parser/MCLParser.java @ 391:f523727db392

Moved Java classes from packages starting with nl.cwi.monetdb.* to package org.monetdb.* This naming complies to the Java Package Naming convention as MonetDB's main website is www.monetdb.org.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 12 Nov 2020 22:02:01 +0100 (2020-11-12)
parents src/main/java/nl/cwi/monetdb/mcl/parser/MCLParser.java@54137aeb1f92
children bf9f6b6ecf40
line wrap: on
line diff
copy from src/main/java/nl/cwi/monetdb/mcl/parser/MCLParser.java
copy to src/main/java/org/monetdb/mcl/parser/MCLParser.java
--- a/src/main/java/nl/cwi/monetdb/mcl/parser/MCLParser.java
+++ b/src/main/java/org/monetdb/mcl/parser/MCLParser.java
@@ -6,7 +6,7 @@
  * Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
  */
 
-package nl.cwi.monetdb.mcl.parser;
+package org.monetdb.mcl.parser;
 
 
 /**
@@ -15,7 +15,7 @@ package nl.cwi.monetdb.mcl.parser;
  * the same type of work.  While this is a very unnatural solution in
  * the Java language, it prevents many object creations on a low level
  * of the protocol.  This favours performance.
- * 
+ *
  * A typical parser has a method parse() which takes a String, and the
  * methods hasNext() and next() to retrieve the values that were
  * extracted by the parser.  Parser specific methods may be available to