Advertisement
bungrudi

Untitled

Oct 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public void methodA(FeedRequest f, String param) {
  2.     ...
  3. }
  4.  
  5. @RequestMapping(...)
  6. public void methodA_1(FeedRequest a) {
  7.     methodA(a, "param 1");
  8. }
  9.  
  10. @RequestMapping(...)
  11. public void methodA_1(FeedRequest a) {
  12.     methodA(a, "param 2");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement