mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fixed a couple of warnings in the log
This commit is contained in:
parent
99b341c407
commit
349a2aa036
3 changed files with 2 additions and 4 deletions
|
@ -135,8 +135,7 @@ public class MBSLanguageSettingsProvider extends AbstractExecutableExtensionBase
|
|||
}
|
||||
@Override
|
||||
public LanguageSettingsStorage clone() throws CloneNotSupportedException {
|
||||
throw new CloneNotSupportedException();
|
||||
// return this;
|
||||
return this;
|
||||
}
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
|
|
|
@ -212,7 +212,6 @@ public class Messages extends NLS {
|
|||
public static String PropertyPageDefsTab_9;
|
||||
public static String PropertyPageDefsTab_showIncludeFileTab;
|
||||
public static String PropertyPageDefsTab_showProvidersTab;
|
||||
public static String RefreshPolicyExceptionDialog_addButtonLabel;
|
||||
public static String RefreshPolicyExceptionDialog_addDialogLabel;
|
||||
public static String RefreshPolicyExceptionDialog_AddExceptionInfoDialog_message;
|
||||
public static String RefreshPolicyExceptionDialog_AddExceptionInfoDialog_title;
|
||||
|
|
|
@ -199,7 +199,7 @@ public class CConfigurationSpecSettings implements ICSettingsStorage{
|
|||
LanguageSettingsStorage clone = base.lspPersistedState.get(providerId).clone();
|
||||
lspPersistedState.put(providerId, clone);
|
||||
} catch (CloneNotSupportedException e) {
|
||||
CCorePlugin.log(e);
|
||||
CCorePlugin.log("Not able to clone language settings storage:" + e); //$NON-NLS-1$
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue