/** End previously opened connection to Cyc. */
 public void endConnection() throws CycSupportError {
   try {
     myAccess.close();
   } catch (Exception e) {
     throw new CycSupportError("Unknow error!");
   }
 }
Example #2
0
 @AfterClass
 public static void shutdown() {
   cyc.close();
 }