From 159f6f5c76da47ddc055361b7e3eb2ff5fdf2c0b Mon Sep 17 00:00:00 2001 From: John Cortell Date: Wed, 16 May 2007 19:52:09 +0000 Subject: [PATCH] Reverted to 1.71. Change to method visibility was accidental. --- .../src/org/eclipse/cdt/debug/internal/core/model/CValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CValue.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CValue.java index e9c7c8dd7de..8a85adac557 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CValue.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CValue.java @@ -595,7 +595,7 @@ public class CValue extends AbstractCValue { } } - protected static CVariableFormat getNaturalFormat(ICDIValue value, CVariableFormat defaultFormat) throws CDIException { + private static CVariableFormat getNaturalFormat(ICDIValue value, CVariableFormat defaultFormat) throws CDIException { if (value instanceof ICDIFormattable) { int naturalFormat = ((ICDIFormattable)value).getNaturalFormat(); switch (naturalFormat) {