diff --git a/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java b/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java index 838bf20b8a7fe1acb5907d5923a16abc8ff90140..482be9e929e3a58d72f4fea2d624244df44f8aaf 100755 --- a/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java +++ b/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java @@ -87,8 +87,9 @@ public final class Blackboard { * @param moduleName The display name of the module posting the artifact. * * @throws BlackboardException The exception is thrown if there is an issue - * posting the artifact. RJCTODO: Deprecate + * posting the artifact. */ + // RJCTODO: Deprecate public void postArtifact(BlackboardArtifact artifact, String moduleName) throws BlackboardException { postArtifacts(Collections.singleton(artifact), moduleName, null); } @@ -104,8 +105,9 @@ public void postArtifact(BlackboardArtifact artifact, String moduleName) throws * @param moduleName The display name of the module posting the artifacts. * * @throws BlackboardException The exception is thrown if there is an issue - * posting the artifact. RJCTODO: Deprecate + * posting the artifact. */ + // RJCTODO: Deprecate public void postArtifacts(Collection<BlackboardArtifact> artifacts, String moduleName) throws BlackboardException { postArtifacts(artifacts, moduleName, null); }