Browse Source

修复

master
李攀 8 years ago
parent
commit
169782b7b1
  1. 3
      designer_base/src/com/fr/design/extra/exe/GetLoginInfoExecutor.java

3
designer_base/src/com/fr/design/extra/exe/GetLoginInfoExecutor.java

@ -2,6 +2,7 @@ package com.fr.design.extra.exe;
import com.fr.design.DesignerEnvManager;
import com.fr.design.extra.Process;
import com.fr.stable.StringUtils;
/**
* Created by lp on 2016/8/16.
@ -26,7 +27,7 @@ public class GetLoginInfoExecutor implements Executor {
@Override
public void run(Process<String> process) {
String username = DesignerEnvManager.getEnvManager().getBBSName();
if (username.isEmpty()) {
if (StringUtils.isEmpty(username)) {
}else {
result = username;
}

Loading…
Cancel
Save