mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 23:55:26 +02:00
[cleanup] fix compiler warnings
This commit is contained in:
parent
8e54965e02
commit
4189c96f68
1 changed files with 4 additions and 4 deletions
|
@ -380,13 +380,13 @@ public class SystemSelectRemoteFileOrFolderForm
|
|||
*/
|
||||
public void setPreSelection(IRemoteFile selection)
|
||||
{
|
||||
SystemBasePlugin.logInfo("given: '" + selection.getAbsolutePath()+"'");
|
||||
SystemBasePlugin.logInfo("given: '" + selection.getAbsolutePath()+"'"); //$NON-NLS-1$ //$NON-NLS-2$
|
||||
IRemoteFile parentFolder = selection.getParentRemoteFile();
|
||||
/**/
|
||||
if (parentFolder != null)
|
||||
SystemBasePlugin.logInfo("parent of given: '" + parentFolder.getAbsolutePath() + "'");
|
||||
SystemBasePlugin.logInfo("parent of given: '" + parentFolder.getAbsolutePath() + "'"); //$NON-NLS-1$ //$NON-NLS-2$
|
||||
else
|
||||
SystemBasePlugin.logInfo("parent of given is null");
|
||||
SystemBasePlugin.logInfo("parent of given is null"); //$NON-NLS-1$
|
||||
/**/
|
||||
// it might be a bug, bug when asking for the parent of '/', I get back '/'!!!
|
||||
if ((parentFolder != null) &&
|
||||
|
@ -406,7 +406,7 @@ public class SystemSelectRemoteFileOrFolderForm
|
|||
}
|
||||
else
|
||||
{
|
||||
SystemBasePlugin.logInfo("preSelectRoot is true");
|
||||
SystemBasePlugin.logInfo("preSelectRoot is true"); //$NON-NLS-1$
|
||||
preSelectRoot = true;
|
||||
setRestrictFolders(false);
|
||||
setRootFolder(selection);
|
||||
|
|
Loading…
Add table
Reference in a new issue