Skip to content

Commit

Permalink
Changes from PR feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cover jdcove2 committed Dec 4, 2024
1 parent 7b690d0 commit a1a342f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/emissary/core/IBaseDataObjectHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ public static IBaseDataObject clone(final IBaseDataObject iBaseDataObject) {
*
* A "fullClone" duplicates all attributes.
*
* @deprecated
* @deprecated prefer {@link #clone(IBaseDataObject)}
* @param iBaseDataObject the IBaseDataObject to be cloned.
* @param fullClone specifies if all fields should be cloned.
* @return the clone of the IBaseDataObject passed in.
*/
@Deprecated
@Deprecated(forRemoval = true)
public static IBaseDataObject clone(final IBaseDataObject iBaseDataObject, final boolean fullClone) {
Validate.notNull(iBaseDataObject, "Required: iBaseDataObject not null");

Expand Down

0 comments on commit a1a342f

Please sign in to comment.