added to if-else-tree

This commit is contained in:
afischerdev 2023-08-30 16:59:47 +02:00
parent 093d400c5b
commit 9d22709017

View file

@ -596,8 +596,7 @@ public abstract class BExpressionContext implements IByteArrayUnifier {
foot += inch / 12f; foot += inch / 12f;
} }
value = String.format(Locale.US, "%3.1f", foot * 0.3048f); value = String.format(Locale.US, "%3.1f", foot * 0.3048f);
} } else if (value.contains("'")) {
if (value.contains("'")) {
float foot = 0f; float foot = 0f;
int inch = 0; int inch = 0;
String[] sa = value.split("'"); String[] sa = value.split("'");