use of org.ballerinalang.model.values.BString in project carbon-apimgt by wso2.
the class RemoveMapEntry method execute.
@Override
public BValue[] execute(Context context) {
String key = getStringArgument(context, 0);
MapManagerHolder.getInstance().getMapManager().remove(key);
return getBValues(new BString(key));
}
Aggregations