mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 797f4121214eadfe1df74aadae0c2299dc178a02
7 lines
263 B
Java
7 lines
263 B
Java
public class CompositeAssignment {
|
|
public static String foo(String portalName, String itemName) {
|
|
String <caret>redirectPath = "/portals/" + portalName + "/widgets/";
|
|
redirectPath += itemName;
|
|
return redirectPath.toUpperCase();
|
|
}
|
|
} |