mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
3c572e9afb
commit
88415fb2a1
2 changed files with 8 additions and 11 deletions
|
@ -48,9 +48,8 @@ public class ListItem {
|
|||
public boolean equals(Object obj) {
|
||||
if (obj == this)
|
||||
return true;
|
||||
else if (obj instanceof ListItem)
|
||||
if (obj instanceof ListItem)
|
||||
return record == ((ListItem) obj).record;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
* 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;
|
||||
|
|
Loading…
Add table
Reference in a new issue