cleaned out some code.

This commit is contained in:
cola98765
2021-10-13 13:24:07 +02:00
parent 4baa649972
commit 80edf19b33
5 changed files with 13 additions and 59 deletions
@@ -188,6 +188,7 @@ public class DataPointUtil
}
/** This is used to convert a dataPoint to string (useful for the print function) */
@SuppressWarnings("unused")
public static String toString(long dataPoint)
{
return getHeight(dataPoint) + " " +
@@ -233,7 +234,7 @@ public class DataPointUtil
* @param dataToMerge one or more columns of data
* @param inputVerticalData vertical size of an input data
* @param maxVerticalData max vertical size of the merged data
* @return 1 column of correctly parsed data
* @return one column of correctly parsed data
*/
public static long[] mergeMultiData(long[] dataToMerge, int inputVerticalData, int maxVerticalData)
{