Skip to content
Snippets Groups Projects
Commit 3d0cf242 authored by jakubs's avatar jakubs
Browse files

SSDM-2780 fix dependencies

SVN: 35775
parent 007b913d
No related branches found
No related tags found
No related merge requests found
...@@ -21,8 +21,9 @@ import java.util.ArrayList; ...@@ -21,8 +21,9 @@ import java.util.ArrayList;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.List; import java.util.List;
import org.apache.commons.lang.StringUtils;
import ch.systemsx.cisd.base.annotation.JsonObject; import ch.systemsx.cisd.base.annotation.JsonObject;
import ch.systemsx.cisd.common.shared.basic.string.StringUtils;
/** /**
* @author pkupczyk * @author pkupczyk
...@@ -71,6 +72,7 @@ public abstract class SortOptions<OBJECT> implements Serializable ...@@ -71,6 +72,7 @@ public abstract class SortOptions<OBJECT> implements Serializable
{ {
strings.add(sort.toString()); strings.add(sort.toString());
} }
return StringUtils.joinList(strings, ", "); return StringUtils.join(strings, ", ");
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment