From 12bf67ae67e101e2fd56985fa0ce0fbd88500a91 Mon Sep 17 00:00:00 2001 From: Jason Wells Date: Fri, 26 Oct 2018 09:40:48 -0700 Subject: [PATCH] Small comment tweaks --- .../annotations/AnnotationHistoryRepository.java | 4 ++-- .../java/com/nuix/superutilities/misc/NuixVersion.java | 8 -------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/Java/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java b/Java/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java index 0af678b..f3e4c47 100644 --- a/Java/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java +++ b/Java/src/main/java/com/nuix/superutilities/annotations/AnnotationHistoryRepository.java @@ -165,7 +165,6 @@ public class AnnotationHistoryRepository implements Closeable{ /*** * Creates a new instance against the given and database file. If the database file does not * already exist it will be created and initialized. - * @param nuixCase The case to record from or sync to * @param databaseFile The database file to record annotations to or playback annotations from * @throws SQLException If the SQL bits throw an error */ @@ -190,7 +189,6 @@ public AnnotationHistoryRepository(File databaseFile) throws SQLException{ /*** * Creates a new instance against the given and database file. If the database file does not * already exist it will be created and initialized. - * @param nuixCase The case to record from or sync to * @param databaseFile The database file to record annotations to or playback annotations from * @throws SQLException If the SQL bits throw an error */ @@ -705,6 +703,8 @@ public DateTime calculateLastDbEventStart() throws SQLException{ * query the Nuix case history for all further events started after that point, effectively obtaining and recording all new * event history entries not yet recorded in this database. * + * @param nuixCase The case to record history events from + * @param settings The settings which determine how the sync is performed * @throws IOException If there is an error: creating snapshot, getting case history or converting items into bitamp byte array for DB * @throws SQLException If the SQL bits throw an error */ diff --git a/Java/src/main/java/com/nuix/superutilities/misc/NuixVersion.java b/Java/src/main/java/com/nuix/superutilities/misc/NuixVersion.java index 1602fce..cb9be82 100644 --- a/Java/src/main/java/com/nuix/superutilities/misc/NuixVersion.java +++ b/Java/src/main/java/com/nuix/superutilities/misc/NuixVersion.java @@ -1,11 +1,3 @@ -/** - * NUIX MAKES NO EXPRESS OR IMPLIED REPRESENTATIONS OR WARRANTIES WITH RESPECT TO THIS CODE (INCLUDING BUT NOT LIMITED - * TO ANY WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, OR SUITABILITY FOR - * CUSTOMER’S REQUIREMENTS). WITHOUT LIMITING THE FOREGOING, NUIX DOES NOT WARRANT THAT THIS CODE WILL MEET CUSTOMER’S - * REQUIREMENTS OR THAT ANY USE OF THIS CODE WILL BE ERROR-FREE OR THAT ANY ERRORS OR DEFECTS IN THIS CODE WILL BE CORRECTED. - * THIS CODE IS PROVIDED TO CUSTOMER ON AN “AS IS” AND “AS AVAILABLE” BASIS AND FOR COMMERCIAL USE ONLY. CUSTOMER IS RESPONSIBLE - * FOR DETERMINING WHETHER ANY INFORMATION GENERATED FROM USE OF THIS CODE IS ACCURATE AND SUFFICIENT FOR CUSTOMER’S PURPOSES. - */ package com.nuix.superutilities.misc; import java.lang.Package;