1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2012-05-02 20:55:43 -07:00
parent 3c572e9afb
commit 88415fb2a1
2 changed files with 8 additions and 11 deletions

View file

@ -6,8 +6,8 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* QNX - Initial API and implementation
* Markus Schorn (Wind River Systems)
* QNX - Initial API and implementation
* Markus Schorn (Wind River Systems)
*******************************************************************************/
package org.eclipse.cdt.internal.core.pdom.db;
@ -48,10 +48,9 @@ public class ListItem {
public boolean equals(Object obj) {
if (obj == this)
return true;
else if (obj instanceof ListItem)
return record == ((ListItem)obj).record;
else
return false;
if (obj instanceof ListItem)
return record == ((ListItem) obj).record;
return false;
}
public void setItem(long item) throws CoreException {

View file

@ -6,11 +6,10 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* QNX - Initial API and implementation
* Markus Schorn (Wind River Systems)
* Sergey Prigogin (Google)
* QNX - Initial API and implementation
* Markus Schorn (Wind River Systems)
* Sergey Prigogin (Google)
*******************************************************************************/
package org.eclipse.cdt.internal.core.pdom.db;
import org.eclipse.cdt.core.dom.IPDOMVisitor;
@ -21,7 +20,6 @@ import org.eclipse.core.runtime.CoreException;
/**
* Represents a linked list of PDOMNode records
* @author Doug Schaefer
*
*/
public class PDOMNodeLinkedList {
private long offset;