mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-16 16:24:53 +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;
|
|
}
|
|
} |