1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 16:55:38 +02:00

Warning cleanup.

This commit is contained in:
Mikhail Khodjaiants 2004-10-10 20:31:01 +00:00
parent f15a3f4d08
commit 9d7f94cc12

View file

@ -40,9 +40,9 @@ public class CExtendedMemoryBlock extends CDebugElement implements IExtendedMemo
/**
* Constructor for CMemoryByte.
*/
public CMemoryByte( byte value, byte flags ) {
this.value = value;
this.flags = flags;
public CMemoryByte( byte v, byte f ) {
this.value = v;
this.flags = f;
}
/**