From 384068928d64f42387e67a695794212faa7635af Mon Sep 17 00:00:00 2001 From: Lukasz_Tybulewicz <38651609+ltybul@users.noreply.github.com> Date: Mon, 23 Apr 2018 15:59:05 +0200 Subject: [PATCH 1/2] correction for upload of json files --- src/main/java/com/nexosis/model/DataSetStreamSource.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/com/nexosis/model/DataSetStreamSource.java b/src/main/java/com/nexosis/model/DataSetStreamSource.java index 2af82a0..6a7594b 100644 --- a/src/main/java/com/nexosis/model/DataSetStreamSource.java +++ b/src/main/java/com/nexosis/model/DataSetStreamSource.java @@ -49,10 +49,6 @@ public void setContentType(String contentType) throws IllegalArgumentException { if (!contentType.equalsIgnoreCase("text/csv") && !contentType.startsWith("application/json")) { throw new IllegalArgumentException("contentType must be set to text/csv or application/json"); } - // force to use application/json w/ utf-8 - if (contentType.equalsIgnoreCase("application/json")) { - contentType = Json.MEDIA_TYPE; - } this.contentType = contentType; } From ec26bc15f61656ae80d8d8a030d0dc569e3365d0 Mon Sep 17 00:00:00 2001 From: Lukasz Tybulewicz <38651609+ltybul@users.noreply.github.com> Date: Sat, 13 Apr 2024 19:11:37 +0200 Subject: [PATCH 2/2] Forced from ui update for webhooktrigger Extended description of trigger update --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 2bb8134..c3baaa5 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,9 @@ +//dummy trigger of commit apply plugin: 'java' apply plugin: 'maven' apply plugin: 'signing' apply plugin: 'com.github.johnrengelman.shadow' - +//another dummy trigger of commit group = 'com.nexosis' archivesBaseName = 'nexosisclient-java' version = '4.0.1'