Skip to content
Snippets Groups Projects
Commit 2b82d27c authored by tjc's avatar tjc
Browse files

fix for max value in user data

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@9131 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 80e2ca71
Branches
Tags
No related merge requests found
......@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/plot/UserDataAlgorithm.java,v 1.5 2008-08-08 15:49:39 tjc Exp $
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/plot/UserDataAlgorithm.java,v 1.6 2008-10-30 17:18:28 tjc Exp $
*/
package uk.ac.sanger.artemis.plot;
......@@ -40,7 +40,7 @@ import java.util.regex.Pattern;
* set in the constructor.
*
* @author Kim Rutherford <kmr@sanger.ac.uk>
* @version $Id: UserDataAlgorithm.java,v 1.5 2008-08-08 15:49:39 tjc Exp $
* @version $Id: UserDataAlgorithm.java,v 1.6 2008-10-30 17:18:28 tjc Exp $
**/
public class UserDataAlgorithm extends BaseAlgorithm
......@@ -53,7 +53,7 @@ public class UserDataAlgorithm extends BaseAlgorithm
/**
* The maximum value in the data array.
**/
private float data_max = Float.MAX_VALUE;
private float data_max = Float.MIN_VALUE;
/**
* The minimum value in the data array.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment