Revision: 6438
          http://sourceforge.net/p/jump-pilot/code/6438
Author:   ma15569
Date:     2020-09-10 06:32:20 +0000 (Thu, 10 Sep 2020)
Log Message:
-----------
correct error on computing statistics

Modified Paths:
--------------
    core/trunk/src/org/openjump/core/ui/plugin/raster/ManageDataPlugIn.java

Modified: 
core/trunk/src/org/openjump/core/ui/plugin/raster/ManageDataPlugIn.java
===================================================================
--- core/trunk/src/org/openjump/core/ui/plugin/raster/ManageDataPlugIn.java     
2020-09-08 06:32:33 UTC (rev 6437)
+++ core/trunk/src/org/openjump/core/ui/plugin/raster/ManageDataPlugIn.java     
2020-09-10 06:32:20 UTC (rev 6438)
@@ -475,9 +475,9 @@
         jPanel1.setBorder(BorderFactory.createTitledBorder(STATISTICS));
         nd = new JTextField(String.valueOf(rLayer.getNoDataValue()));
         nd.setEditable(false);
-        max = new JTextField(min_value + "");
+        max = new JTextField(max_value + "");
         max.setEditable(false);
-        min = new JTextField(max_value + "");
+        min = new JTextField(min_value + "");
         min.setEditable(false);
         final JLabel nd_label = new JLabel(NODATA);
         final JLabel min_label = new JLabel(MIN);



_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to