This commit is contained in:
Igor I
2025-03-13 11:16:16 +05:00
parent 1c1c6e56fb
commit 2add158319
5 changed files with 20 additions and 126 deletions

View File

@ -494,7 +494,7 @@ public class TCField
}else if(type== TCField.BD_UTF8_1 || type== TCField.BD_UTF8_1_UUID || type== TCField.BD_UTF8_1_TIMESTAMP || this.type== TCField.BD_SUINT8 || this.type== TCField.BD_SINT8 || this.type== TCField.BD_SFLOAT8)
{
value=null;
if(val!=null && !val.equals(""))
if(val!=null && !val.isEmpty())
{
byte[] b=null;
try {
@ -517,7 +517,7 @@ public class TCField
}else if(type== TCField.BD_UTF8_2)
{
value=null;
if(val!=null && !val.equals(""))
if(val!=null && !val.isEmpty())
{
byte[] b=null;
try {
@ -541,7 +541,7 @@ public class TCField
}else if(type== TCField.BD_UTF8_4 || type== TCField.BD_UTF8_4_JSONB)
{
value=null;
if(val!=null && !val.equals(""))
if(val!=null && !val.isEmpty())
{
byte[] b=null;
try {