chore: Move StringUtils to interfaces module (#32129)

This is a utility class with static methods, and we need them in domain
classes in the `interfaces` module as well.
This commit is contained in:
Shrikant Sharat Kandula 2024-03-28 10:53:41 +05:30 committed by GitHub
parent 062b67642b
commit eba60585ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
package com.appsmith.server.helpers;
package com.appsmith.external.helpers;
public class StringUtils {
private StringUtils() {}

View File

@ -25,10 +25,10 @@ import java.util.List;
import java.util.Map;
import java.util.Set;
import static com.appsmith.external.helpers.StringUtils.dotted;
import static com.appsmith.server.constants.ResourceModes.EDIT;
import static com.appsmith.server.constants.ResourceModes.VIEW;
import static com.appsmith.server.helpers.DateUtils.ISO_FORMATTER;
import static com.appsmith.server.helpers.StringUtils.dotted;
@Getter
@Setter

View File

@ -10,7 +10,7 @@ import lombok.Setter;
import lombok.ToString;
import lombok.experimental.FieldNameConstants;
import static com.appsmith.server.helpers.StringUtils.dotted;
import static com.appsmith.external.helpers.StringUtils.dotted;
/**
* This class represents a collection of actions that may or may not belong to the same plugin.

View File

@ -13,7 +13,7 @@ import lombok.Setter;
import lombok.ToString;
import lombok.experimental.FieldNameConstants;
import static com.appsmith.server.helpers.StringUtils.dotted;
import static com.appsmith.external.helpers.StringUtils.dotted;
@Getter
@Setter