eclipse plugin: Don't use the inneficient string(string) contructor
Issue Found by "FindBugs"
This commit is contained in:
parent
62460f6828
commit
5ee02f8172
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ public class Tag
|
|||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return new String(name_ + " " + extendedTagName_); //$NON-NLS-1$
|
||||
return (name_ + " " + extendedTagName_); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
public String getName()
|
||||
|
|
Loading…
Add table
Reference in a new issue