提交 8ece98c6 编写于 作者: C Chris Beams

Fixed build breakage due to use of WebDataBinder.setDisallowedFields(String);...

Fixed build breakage due to use of WebDataBinder.setDisallowedFields(String); changed calls to use the updated String[] signature.
上级 0a4463fb
......@@ -39,7 +39,7 @@ public class AddOwnerForm {
@InitBinder
public void setAllowedFields(WebDataBinder dataBinder) {
dataBinder.setDisallowedFields("id");
dataBinder.setDisallowedFields(new String[] {"id"});
}
@RequestMapping(method = RequestMethod.GET)
......
......@@ -49,7 +49,7 @@ public class AddPetForm {
@InitBinder
public void setAllowedFields(WebDataBinder dataBinder) {
dataBinder.setDisallowedFields("id");
dataBinder.setDisallowedFields(new String[] {"id"});
}
@RequestMapping(method = RequestMethod.GET)
......
......@@ -41,7 +41,7 @@ public class AddVisitForm {
@InitBinder
public void setAllowedFields(WebDataBinder dataBinder) {
dataBinder.setDisallowedFields("id");
dataBinder.setDisallowedFields(new String[] {"id"});
}
@RequestMapping(method = RequestMethod.GET)
......
......@@ -39,7 +39,7 @@ public class EditOwnerForm {
@InitBinder
public void setAllowedFields(WebDataBinder dataBinder) {
dataBinder.setDisallowedFields("id");
dataBinder.setDisallowedFields(new String[] {"id"});
}
@RequestMapping(method = RequestMethod.GET)
......
......@@ -47,7 +47,7 @@ public class EditPetForm {
@InitBinder
public void setAllowedFields(WebDataBinder dataBinder) {
dataBinder.setDisallowedFields("id");
dataBinder.setDisallowedFields(new String[] {"id"});
}
@RequestMapping(method = RequestMethod.GET)
......
......@@ -35,7 +35,7 @@ public class FindOwnersForm {
@InitBinder
public void setAllowedFields(WebDataBinder dataBinder) {
dataBinder.setDisallowedFields("id");
dataBinder.setDisallowedFields(new String[] {"id"});
}
@RequestMapping(value = "/owners/search", method = RequestMethod.GET)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册