diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/MappingSourceContainer.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/MappingSourceContainer.java
index cf660686e83..4ab380c4112 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/MappingSourceContainer.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/MappingSourceContainer.java
@@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * QNX Software Systems - Initial API and implementation
+ * QNX Software Systems - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.debug.core.sourcelookup;
@@ -31,12 +31,11 @@ import org.eclipse.debug.core.sourcelookup.containers.AbstractSourceContainer;
* The source container for path mappings.
*/
public class MappingSourceContainer extends AbstractSourceContainer {
-
/**
* Unique identifier for the mapping source container type
* (value org.eclipse.cdt.debug.core.containerType.mapping
).
*/
- public static final String TYPE_ID = CDebugCorePlugin.getUniqueIdentifier() + ".containerType.mapping"; //$NON-NLS-1$
+ public static final String TYPE_ID = CDebugCorePlugin.getUniqueIdentifier() + ".containerType.mapping"; //$NON-NLS-1$
private String fName;
private ArrayList fContainers;
@@ -44,7 +43,7 @@ public class MappingSourceContainer extends AbstractSourceContainer {
/**
* Constructor for MappingSourceContainer.
*/
- public MappingSourceContainer( String name ) {
+ public MappingSourceContainer(String name) {
fName = name;
fContainers = new ArrayList();
}
@@ -60,7 +59,7 @@ public class MappingSourceContainer extends AbstractSourceContainer {
* @see org.eclipse.debug.core.sourcelookup.ISourceContainer#getType()
*/
public ISourceContainerType getType() {
- return getSourceContainerType( TYPE_ID );
+ return getSourceContainerType(TYPE_ID);
}
/* (non-Javadoc)
@@ -73,54 +72,49 @@ public class MappingSourceContainer extends AbstractSourceContainer {
/* (non-Javadoc)
* @see org.eclipse.debug.internal.core.sourcelookup.ISourceContainer#findSourceElements(java.lang.String)
*/
- public Object[] findSourceElements( String name ) throws CoreException {
- return findSourceElements( name, getSourceContainers() );
+ public Object[] findSourceElements(String name) throws CoreException {
+ return findSourceElements(name, getSourceContainers());
}
- protected Object[] findSourceElements( String name, ISourceContainer[] containers ) throws CoreException {
+ protected Object[] findSourceElements(String name, ISourceContainer[] containers) throws CoreException {
List