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:
parent
4337898298
commit
b9e4d417a4
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue