mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
Remove unnecessary Vector creation
This commit is contained in:
parent
79297e1b52
commit
456cb0ee20
1 changed files with 1 additions and 2 deletions
|
@ -62,10 +62,9 @@ public class WinCEFileSubSystemConfiguration extends FileServiceSubSystemConfigu
|
|||
ISystemFilterPool pool = null;
|
||||
try {
|
||||
pool = mgr.createSystemFilterPool(getDefaultFilterPoolName(mgr.getName(), getId()), true);
|
||||
Vector filterStrings = new Vector();
|
||||
|
||||
// "My Home" filter
|
||||
filterStrings = new Vector();
|
||||
Vector filterStrings = new Vector();
|
||||
RemoteFileFilterString myHomeFilterString = new RemoteFileFilterString(this);
|
||||
myHomeFilterString.setPath("\\My Documents\\"); //$NON-NLS-1$
|
||||
filterStrings.add(myHomeFilterString.toString());
|
||||
|
|
Loading…
Add table
Reference in a new issue