diff options
author | Tal Gitelman <tg851x@intl.att.com> | 2018-10-10 14:52:54 +0300 |
---|---|---|
committer | Michael Lando <michael.lando@intl.att.com> | 2018-10-12 08:07:35 +0000 |
commit | 7d05e16f0ab24ba8918bd4466d50a9fb77571552 (patch) | |
tree | d1da92387eaa9d29780d56650e51dc5ccd439107 /common-app-api/src/main | |
parent | 502b7b7839374680a494c1606798a8b4588daa2b (diff) |
update sdc portal integration
Change-Id: I6e17434f753c2eaa562da80c1eade8688601f510
Issue-ID: SDC-1749
Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
Diffstat (limited to 'common-app-api/src/main')
-rw-r--r-- | common-app-api/src/main/java/org/openecomp/sdc/common/util/ZipUtil.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common-app-api/src/main/java/org/openecomp/sdc/common/util/ZipUtil.java b/common-app-api/src/main/java/org/openecomp/sdc/common/util/ZipUtil.java index 2036e2332d..13ad92e8a5 100644 --- a/common-app-api/src/main/java/org/openecomp/sdc/common/util/ZipUtil.java +++ b/common-app-api/src/main/java/org/openecomp/sdc/common/util/ZipUtil.java @@ -86,11 +86,8 @@ public class ZipUtil { } public static void main(String[] args) { - String zipFileName = "/src/test/resources/config/config.zip"; - zipFileName = "C:\\Git_work\\D2-SDnC\\catalog-be\\src\\test\\resources\\config\\config.zip"; - Path path = Paths.get(zipFileName); try { @@ -102,7 +99,6 @@ public class ZipUtil { } catch (IOException e) { log.info("close Byte stream failed" , e); } - } public static byte[] zipBytes(byte[] input) throws IOException { @@ -131,5 +127,4 @@ public class ZipUtil { throw new IllegalStateException("Can't unzip input stream", e); } } - } |