UI cleanup, some code cleanup

This commit is contained in:
2022-02-20 01:05:28 -06:00
parent 0bebbc7602
commit 837ef7bfe4
5 changed files with 179 additions and 436 deletions

View File

@@ -17,7 +17,7 @@ public class Plate {
boolean exponential = false;
public Plate (int size, double error, Integer[] concentrations) {
public Plate(int size, double error, Integer[] concentrations) {
this.size = size;
this.error = error;
this.concentrations = concentrations;
@@ -25,7 +25,7 @@ public class Plate {
wells = new ArrayList<>();
}
public Plate(String sourceFileName, List<List<Integer[]>> wells){
public Plate(String sourceFileName, List<List<Integer[]>> wells) {
this.sourceFile = sourceFileName;
this.wells = wells;
this.size = wells.size();