1 package java8testing;
2
3 /**
4 * The Class Collaborator.
5 */
6 public final class Collaborator {
7
8 /**
9 * Do something.
10 *
11 * @param i
12 * the i
13 *
14 * @return the string
15 */
16 public String doSomething(int i) {
17 return "";
18 }
19 }