Commit 317a182f by guominglei

修改返回值

parent 1d201085
...@@ -38,8 +38,8 @@ public class ApiWorkspaceServiceImpl implements ApiWorkspaceService { ...@@ -38,8 +38,8 @@ public class ApiWorkspaceServiceImpl implements ApiWorkspaceService {
ValidationUtil.dataNotBank(workspaceName, "工作空间名称不允许为空!"); ValidationUtil.dataNotBank(workspaceName, "工作空间名称不允许为空!");
Workspace workspace = workspaceMapper.getByName(workspaceName); Workspace workspace = workspaceMapper.getByName(workspaceName);
if (null == workspace){ if (null == workspace){
return true;
}
return false; return false;
} }
return true;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment