From 8b92c6988ba8f17ece260549eaed35f66a3a84ca Mon Sep 17 00:00:00 2001 From: niranda perera Date: Fri, 20 Sep 2019 15:12:25 -0400 Subject: [PATCH] partial fix for #635 --- twister2/tset/src/java/edu/iu/dsc/tws/tset/TSetUtils.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/twister2/tset/src/java/edu/iu/dsc/tws/tset/TSetUtils.java b/twister2/tset/src/java/edu/iu/dsc/tws/tset/TSetUtils.java index 3a1c2ac3b8..5a9a660538 100644 --- a/twister2/tset/src/java/edu/iu/dsc/tws/tset/TSetUtils.java +++ b/twister2/tset/src/java/edu/iu/dsc/tws/tset/TSetUtils.java @@ -16,15 +16,9 @@ import edu.iu.dsc.tws.api.comms.messaging.types.MessageTypes; public final class TSetUtils { - private static long genCount = 0; - private TSetUtils() { } -// public static String generateName(String prefix) { -// return "__" + prefix + (++genCount); -// } - public static MessageType getDataType(Class type) { if (type == int[].class) { return MessageTypes.INTEGER_ARRAY;