Merge pull request #1293 from nasa/1292-typo-in-ProductVar

Fix typo in ProductVar.java
closes #1292
This commit is contained in:
Jacqueline Deans 2022-06-28 16:13:32 -05:00 committed by GitHub
commit ade5932e87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,7 @@ public class ProductVar {
return 4.0;
}
},
SYMBOL_MEDIEUM("Medieum") {
SYMBOL_MEDIUM("Medium") {
@Override
public double getDouble() {
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) {
size = symbolSize.getDouble();
}