1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-23 00:03:53 +02:00

[cleanup] fix compiler warnings

This commit is contained in:
Kushal Munir 2006-12-05 15:55:32 +00:00
parent 7b4385aadb
commit b3457d9565
2 changed files with 8 additions and 5 deletions

View file

@ -591,7 +591,7 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi
// rebuild profiles // rebuild profiles
SystemStartHere.getSystemProfileManager(); // create folders per profile SystemStartHere.getSystemProfileManager(); // create folders per profile
// clear in-memory settings for all connections, then restore from disk // clear in-memory settings for all connections, then restore from disk
((SystemRegistry)_systemRegistry).reset(); _systemRegistry.reset();
// restore in-memory settings for all filter pools and subsystems // restore in-memory settings for all filter pools and subsystems
if (proxies != null) if (proxies != null)
for (int idx=0; idx < proxies.length; idx++) for (int idx=0; idx < proxies.length; idx++)
@ -808,7 +808,7 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi
} }
} }
return (SystemRegistry)_systemRegistry; return _systemRegistry;
} }
/** /**
@ -1065,7 +1065,8 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi
* @param msgId - the ID of the message to retrieve. This is the concatenation of the * @param msgId - the ID of the message to retrieve. This is the concatenation of the
* message's component abbreviation, subcomponent abbreviation, and message ID as declared * message's component abbreviation, subcomponent abbreviation, and message ID as declared
* in the message xml file. * in the message xml file.
* @param subsVars - an array of objects to substitute in for %1, %2, etc * @param subsVar - an array of objects to substitute in for %1, %2, etc.
* @return the message.
*/ */
public static SystemMessage getPluginMessage(String msgId, Object subsVar) public static SystemMessage getPluginMessage(String msgId, Object subsVar)
{ {

View file

@ -88,14 +88,16 @@ public class PasswordPersistenceManager {
} }
/** /**
* @return * Returns the system type.
* @return the system type.
*/ */
public String getSystemType() { public String getSystemType() {
return _systemType; return _systemType;
} }
/** /**
* @return * Returns whether the user ID is case sensitive.
* @return <code>true</code> if the user ID is case sensitive, <code>false</code> otherwise.
*/ */
public boolean isUserIDCaseSensitive() { public boolean isUserIDCaseSensitive() {
return _userIDCaseSensitive; return _userIDCaseSensitive;