UI cleanup, some code cleanup
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user