Skip to content

Commit

Permalink
remove deprecated ibdo methods (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb authored Oct 2, 2023
1 parent b1fc75a commit 0427e1c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 33 deletions.
12 changes: 0 additions & 12 deletions src/main/java/emissary/core/BaseDataObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -735,12 +735,6 @@ public void appendTransformHistory(final String key, boolean coordinated) {
this.history.append(key, coordinated);
}

@Override
@Deprecated
public void setHistory(final List<String> newHistory) {
this.history.set(newHistory);
}

@Override
public void setHistory(TransformHistory newHistory) {
this.history.set(newHistory);
Expand Down Expand Up @@ -982,12 +976,6 @@ public boolean appendUniqueParameter(final String key, final CharSequence value)
return true;
}

@Override
@Deprecated
public void appendParameter(final String key, final CharSequence value, final String sep) {
appendParameter(key, value);
}

@Override
public String getStringParameter(final String key) {
return getStringParameter(key, DEFAULT_PARAM_SEPARATOR);
Expand Down
21 changes: 0 additions & 21 deletions src/main/java/emissary/core/IBaseDataObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -305,17 +305,6 @@ enum MergePolicy {
*/
void appendParameter(String key, Iterable<? extends CharSequence> values);

/**
* Append data to the specified metadata element
*
* @param key name of the metadata element
* @param value the value to append
* @param sep ignored
* @deprecated use {@link #appendParameter(String, CharSequence)}
*/
@Deprecated
void appendParameter(String key, CharSequence value, String sep);

/**
* Append data to the specified metadata element if it doesn't exist
*
Expand Down Expand Up @@ -678,16 +667,6 @@ enum MergePolicy {
*/
String getProcessingError();

/**
* Replace history with the new history
*
* @param list of new history strings to use
* @deprecated See {@link #setHistory(TransformHistory)}
*/
@Deprecated
void setHistory(List<String> list);


/**
* Replace history with the new history
*
Expand Down

0 comments on commit 0427e1c

Please sign in to comment.