变更任务状态时,保留任务其它属性。

This commit is contained in:
RuoYi
2019-04-10 12:35:38 +08:00
parent ab866e8a34
commit 83a96a2327
3 changed files with 2 additions and 4 deletions

View File

@ -107,7 +107,6 @@ public class ServletUtils
*/
public static boolean isAjaxRequest(HttpServletRequest request)
{
String accept = request.getHeader("accept");
if (accept != null && accept.indexOf("application/json") != -1)
{
@ -131,7 +130,6 @@ public class ServletUtils
{
return true;
}
return false;
}
}