diff src/main/java/org/monetdb/util/SQLRestore.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/util/SQLRestore.java@54137aeb1f92
children bf9f6b6ecf40
line wrap: on
line diff
copy from src/main/java/nl/cwi/monetdb/util/SQLRestore.java
copy to src/main/java/org/monetdb/util/SQLRestore.java
--- a/src/main/java/nl/cwi/monetdb/util/SQLRestore.java
+++ b/src/main/java/org/monetdb/util/SQLRestore.java
@@ -6,16 +6,16 @@
  * Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V.
  */
 
-package nl.cwi.monetdb.util;
+package org.monetdb.util;
 
 import java.io.BufferedReader;
 import java.io.File;
 import java.io.IOException;
 import java.util.concurrent.atomic.AtomicBoolean;
 
-import nl.cwi.monetdb.mcl.io.BufferedMCLReader;
-import nl.cwi.monetdb.mcl.io.BufferedMCLWriter;
-import nl.cwi.monetdb.mcl.net.MapiSocket;
+import org.monetdb.mcl.io.BufferedMCLReader;
+import org.monetdb.mcl.io.BufferedMCLWriter;
+import org.monetdb.mcl.net.MapiSocket;
 
 /**
  * Use this class to restore an SQL dump file.
@@ -142,9 +142,9 @@ public final class SQLRestore {
 					throw new IOException(srr.getErrorMessage());
 				}
 			}
-		} catch (nl.cwi.monetdb.mcl.MCLException e) {
+		} catch (org.monetdb.mcl.MCLException e) {
 			throw new IOException(e.getMessage());
-		} catch (nl.cwi.monetdb.mcl.parser.MCLParseException e) {
+		} catch (org.monetdb.mcl.parser.MCLParseException e) {
 			throw new IOException(e.getMessage());
 		} finally {
 			ms.close();