mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-15 12:26:59 +00:00
15 lines
234 B
Java
15 lines
234 B
Java
package pkg;
|
|
|
|
public static class Extension {
|
|
public static String test(String s) {
|
|
return s;
|
|
}
|
|
|
|
public static String test(String s, int i) {
|
|
return s;
|
|
}
|
|
|
|
public static String test(String s, String... s2) {
|
|
return s;
|
|
}
|
|
} |