From c7268778cce0f45f61f5448c5d1e1d16b6a1f16c Mon Sep 17 00:00:00 2001 From: kjvdheide Date: Mon, 8 Jan 2018 11:10:22 +0000 Subject: [PATCH] JAL-2844 changed threshold from double to float --- src/jalview/ext/archaeopteryx/JalviewBinding.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jalview/ext/archaeopteryx/JalviewBinding.java b/src/jalview/ext/archaeopteryx/JalviewBinding.java index 9296583..f7a5bfc 100644 --- a/src/jalview/ext/archaeopteryx/JalviewBinding.java +++ b/src/jalview/ext/archaeopteryx/JalviewBinding.java @@ -353,7 +353,7 @@ public final class JalviewBinding } - public List getNodesAboveThreshold(double threshold, + public List getNodesAboveThreshold(float threshold, TreeNodeI node) { @@ -386,7 +386,7 @@ public final class JalviewBinding * @return */ private List colourNodesAboveThreshold( - List nodeList, double threshold, + List nodeList, float threshold, TreeNodeI node) { -- 1.7.10.2