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

The endianness flag is not chached.

This commit is contained in:
Mikhail Khodjaiants 2005-06-07 15:45:23 +00:00
parent 20da0b9f50
commit 8fca28089c
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-06-07 Mikhail Khodjaiants
The endianness flag is not chached.
* CDebugTarget.java
2005-06-06 Mikhail Khodjaiants
Bug 98594: Unable to set address breakpoints.
* CBreakpointManager.java

View file

@ -1311,8 +1311,8 @@ public class CDebugTarget extends CDebugElement implements ICDebugTarget, ICDIEv
fIsLittleEndian = Boolean.TRUE;
IBinaryObject file;
file = getBinaryFile();
if (file != null) {
return file.isLittleEndian();
if ( file != null ) {
fIsLittleEndian = new Boolean( file.isLittleEndian() );
}
}
return fIsLittleEndian.booleanValue();