From 62f02bf30a50d82ab9e19dedc085fb28006be272 Mon Sep 17 00:00:00 2001 From: fromer Date: Tue, 16 Nov 2010 15:28:58 +0000 Subject: [PATCH] Minor JAVA visibility updates git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4690 348d0f76-0448-11de-a6fe-93d51630548a --- .../sting/utils/PreciseNonNegativeDouble.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java/src/org/broadinstitute/sting/utils/PreciseNonNegativeDouble.java b/java/src/org/broadinstitute/sting/utils/PreciseNonNegativeDouble.java index f676c3945..488d4b30f 100644 --- a/java/src/org/broadinstitute/sting/utils/PreciseNonNegativeDouble.java +++ b/java/src/org/broadinstitute/sting/utils/PreciseNonNegativeDouble.java @@ -12,8 +12,8 @@ package org.broadinstitute.sting.utils; with precision (prevents underflow by representing in log10 space). */ public class PreciseNonNegativeDouble implements Comparable { - private static double EQUALS_THRESH = 1e-6; - private static double INFINITY = Double.POSITIVE_INFINITY; + private static final double EQUALS_THRESH = 1e-6; + private static final double INFINITY = Double.POSITIVE_INFINITY; private double log10Value; @@ -102,7 +102,7 @@ public class PreciseNonNegativeDouble implements Comparable