Korrekturen letzter Merge

thobaben_diagram
Harald Wolff 2016-11-25 08:38:11 +01:00
parent 49d6fcf6b3
commit 5be543ff05
2 changed files with 2 additions and 5 deletions

View File

@ -43,7 +43,7 @@ public class SimplePlotLabeler implements PlotLabeler {
);
} else if (digits == 0){
return String.format("%1.2f",value);
} else if (digits > 0){
} else {
return String.format(
String.format("%%%d.2f",digits),
value

View File

@ -33,10 +33,7 @@ public class SerialPortChooser extends JDialog {
{
return execute(null);
}
public static NewSerialPort execute(Component parent,String selectedPortName)
{
return execute(null, selectedPortName);
}
public static NewSerialPort execute(Component parent,String selectedPortName)
{
SerialPortChooser spc = new SerialPortChooser();