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

@ -48,9 +48,8 @@ public class ListItem {
public boolean equals(Object obj) { public boolean equals(Object obj) {
if (obj == this) if (obj == this)
return true; return true;
else if (obj instanceof ListItem) if (obj instanceof ListItem)
return record == ((ListItem)obj).record; return record == ((ListItem) obj).record;
else
return false; return false;
} }

View file

@ -10,7 +10,6 @@
* Markus Schorn (Wind River Systems) * Markus Schorn (Wind River Systems)
* Sergey Prigogin (Google) * Sergey Prigogin (Google)
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.internal.core.pdom.db; package org.eclipse.cdt.internal.core.pdom.db;
import org.eclipse.cdt.core.dom.IPDOMVisitor; import org.eclipse.cdt.core.dom.IPDOMVisitor;
@ -21,7 +20,6 @@ import org.eclipse.core.runtime.CoreException;
/** /**
* Represents a linked list of PDOMNode records * Represents a linked list of PDOMNode records
* @author Doug Schaefer * @author Doug Schaefer
*
*/ */
public class PDOMNodeLinkedList { public class PDOMNodeLinkedList {
private long offset; private long offset;