提交 9bfc7380 编写于 作者: F fjy

im deeply saddened but another case sensitivity problem and want to resolve these once and for all

上级 db5f04c8
......@@ -61,10 +61,10 @@ public abstract class AbstractTask implements Task
protected AbstractTask(String id, String groupId, TaskResource taskResource, String dataSource)
{
this.id = Preconditions.checkNotNull(id, "id");
this.groupId = Preconditions.checkNotNull(groupId, "groupId");
this.id = Preconditions.checkNotNull(id.toLowerCase(), "id");
this.groupId = Preconditions.checkNotNull(groupId.toLowerCase(), "groupId");
this.taskResource = Preconditions.checkNotNull(taskResource, "resource");
this.dataSource = Preconditions.checkNotNull(dataSource, "dataSource");
this.dataSource = Preconditions.checkNotNull(dataSource.toLowerCase(), "dataSource");
}
@JsonProperty
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册