Fix typo in ProductVar.java

This commit is contained in:
Deans 2022-06-27 16:17:48 -05:00
parent 10acc84e19
commit cad38de0d6

View File

@ -149,7 +149,7 @@ public class ProductVar {
return 4.0; return 4.0;
} }
}, },
SYMBOL_MEDIEUM("Medieum") { SYMBOL_MEDIUM("Medium") {
@Override @Override
public double getDouble() { public double getDouble() {
return 6.0; return 6.0;
@ -744,7 +744,7 @@ public class ProductVar {
} }
} }
double size = SymbolSize.SYMBOL_MEDIEUM.getDouble(); double size = SymbolSize.SYMBOL_MEDIUM.getDouble();
if (symbolSize != null) { if (symbolSize != null) {
size = symbolSize.getDouble(); size = symbolSize.getDouble();
} }