1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 17:35:35 +02:00

[cleanup] adhere to java style for array declaration as opposed to c style

This commit is contained in:
David Dykstal 2007-01-02 14:02:04 +00:00
parent 4337898298
commit b9e4d417a4
2 changed files with 2 additions and 2 deletions

View file

@ -350,7 +350,7 @@ public class RSEPersistenceManager implements IRSEPersistenceManager {
try {
if (!project.isSynchronized(IResource.DEPTH_ONE)) project.refreshLocal(IResource.DEPTH_ONE, null);
IRSEPersistenceProvider persistenceProvider = getRSEPersistenceProvider();
String profileNames[] = persistenceProvider.getSavedProfileNames();
String[] profileNames = persistenceProvider.getSavedProfileNames();
for (int i = 0; i < profileNames.length; i++) {
String profileName = profileNames[i];
RSEDOM dom = importRSEDOM(profileName);

View file

@ -341,7 +341,7 @@ public class RSEDOMImporter implements IRSEDOMImporter
Vector filterStrings = new Vector();
// create the filter strings
RSEDOMNode filterStringNodes[] = node.getChildren(IRSEDOMConstants.TYPE_FILTER_STRING);
RSEDOMNode[] filterStringNodes = node.getChildren(IRSEDOMConstants.TYPE_FILTER_STRING);
for (int i = 0; i < filterStringNodes.length; i++)
{
RSEDOMNode filterStringNode = filterStringNodes[i];