Skip to content

Commit

Permalink
* omitted method
Browse files Browse the repository at this point in the history
* TODO added for future ticket
  • Loading branch information
benedeki committed Oct 1, 2024
1 parent fdb9cfb commit 7dcb65b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion agent/src/main/scala/za/co/absa/atum/agent/AtumContext.scala
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ class AtumContext private[agent] (
* @return the AtumContext after the AD has been dispatched and added
*/
private[agent] def addAdditionalData(key: String, value: String): AtumContext = {
//TODO to make public again in #280
addAdditionalData(Map(key -> value))
}

Expand All @@ -144,7 +145,8 @@ class AtumContext private[agent] (
*
* @return the AtumContext after the AD has been dispatched and added
*/
def addAdditionalData(newAdditionalDataToAdd: Map[String, String]): AtumContext = {
private[agent] def addAdditionalData(newAdditionalDataToAdd: Map[String, String]): AtumContext = {
//TODO to make public again in #280
val currAdditionalData = newAdditionalDataToAdd.map{case (k,v) => (k, Some(v))}

val currAdditionalDataSubmit = AdditionalDataSubmitDTO(
Expand Down

0 comments on commit 7dcb65b

Please sign in to comment.