You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/03/01 14:12:43 UTC

[incubator-streampipes] branch dev updated: STREAMPIPES-100: Remove iconUrl option from pipeline element builder

This is an automated email from the ASF dual-hosted git repository.

wiener pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new adeb9ec  STREAMPIPES-100: Remove iconUrl option from pipeline element builder
adeb9ec is described below

commit adeb9ec14fe2848fb24e6809f8c85121faf35abb
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Sun Mar 1 15:12:17 2020 +0100

    STREAMPIPES-100: Remove iconUrl option from pipeline element builder
---
 .../streampipes/sdk/builder/AbstractPipelineElementBuilder.java       | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/streampipes-sdk/src/main/java/org/apache/streampipes/sdk/builder/AbstractPipelineElementBuilder.java b/streampipes-sdk/src/main/java/org/apache/streampipes/sdk/builder/AbstractPipelineElementBuilder.java
index 9a83e4c..79acbc9 100644
--- a/streampipes-sdk/src/main/java/org/apache/streampipes/sdk/builder/AbstractPipelineElementBuilder.java
+++ b/streampipes-sdk/src/main/java/org/apache/streampipes/sdk/builder/AbstractPipelineElementBuilder.java
@@ -43,6 +43,10 @@ public abstract class AbstractPipelineElementBuilder<BU extends AbstractPipeline
     this.elementDescription.setAppId(appId);
   }
 
+  @Deprecated
+  /**
+   * @deprecated: Use {@link #withAssets(String...)} instead
+   */
   public BU iconUrl(String iconUrl) {
     elementDescription.setIconUrl(iconUrl);
     return me();