Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Possible typo in ASTFileLocation

Hi,

 

The equals method of org.eclipse.cdt.internal.core.parser.scanner. ASTFileLocation ends with:

 

return Objects.equals(fLocationCtx, fLocationCtx);

 

Shouldn’t be

 

return Objects.equals(fLocationCtx, other.fLocationCtx);

 

instead ?

 

Regards,

Julien.


Back to the top