mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-04 00:46:40 +00:00
remove <v> and swap it to {number} for messages
This commit is contained in:
@ -146,9 +146,13 @@ public class PlexUtils extends PlexBase
|
||||
{
|
||||
throw new NullPointerException();
|
||||
}
|
||||
for (Object object : objects)
|
||||
/*for (Object object : objects)
|
||||
{
|
||||
f = f.replaceFirst("<v>", String.valueOf(object));
|
||||
}*/
|
||||
for (int i = 0; i < objects.length; i++)
|
||||
{
|
||||
f = f.replace("{" + i + "}", String.valueOf(objects[i]));
|
||||
}
|
||||
return f;
|
||||
}
|
||||
|
Reference in New Issue
Block a user