From 171c7a68e2d2284e2d2586af27b15d59d2c81ad0 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Sun, 13 Oct 2002 02:32:46 +0000 Subject: [PATCH] remove method supportsValueModification(). --- .../cdt/debug/core/cdi/model/ICDIMemoryBlock.java | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java index 9776ca12ffa..9d49cbcdf1c 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/model/ICDIMemoryBlock.java @@ -45,13 +45,6 @@ public interface ICDIMemoryBlock extends ICDIObject */ byte[] getBytes() throws CDIException; - /** - * Returns whether this memory block supports value modification - * - * @return whether this memory block supports value modification - */ - boolean supportsValueModification(); - /** * Sets the value of the bytes in this memory block at the specified * offset within this memory block to the spcified bytes. @@ -69,9 +62,9 @@ public interface ICDIMemoryBlock extends ICDIObject * beyond the end of this memory block (index of out of range) * */ - void setValue( long offset, byte[] bytes ) throws CDIException; + void setValue(long offset, byte[] bytes) throws CDIException; boolean isFrozen(); - void setFrozen( boolean frozen ); + void setFrozen(boolean frozen); }