From a208292ba9c27ef23680372dd25ebe002827e2e4 Mon Sep 17 00:00:00 2001 From: apriestman <apriestman@basistech.com> Date: Wed, 8 Apr 2020 09:32:32 -0400 Subject: [PATCH] Removing param tag from T to prevent doxygen warnings. --- .../blackboardutils/attributes/BlackboardJsonAttrUtil.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/attributes/BlackboardJsonAttrUtil.java b/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/attributes/BlackboardJsonAttrUtil.java index 13a488875..fde3e7287 100755 --- a/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/attributes/BlackboardJsonAttrUtil.java +++ b/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/attributes/BlackboardJsonAttrUtil.java @@ -32,8 +32,9 @@ public final class BlackboardJsonAttrUtil { * Creates an attribute of a given type with the string value set to an * object of type T serialized to JSON. * - * @param <T> The type of the attribute value object to be + * T The type of the attribute value object to be * serialized. + * * @param attrType The type of attribute to create. * @param moduleName The name of the module creating the attribute. * @param attrValue The attribute value object. @@ -52,7 +53,8 @@ public static <T> BlackboardAttribute toAttribute(BlackboardAttribute.Type attrT * BlackboardAttribute with a value type of * TSK_BLACKBOARD_ATTRIBUTE_VALUE_TYPE.JSON. * - * @param <T> The type of the object to be created from the JSON. + * T The type of the object to be created from the JSON. + * * @param attr The attribute. * @param clazz The class object for class T. * -- GitLab