Skip to content

Commit 0aa2848

Browse files
committed
Changed method name.
1 parent 25a7559 commit 0aa2848

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ReClass.NET/Nodes/BitFieldNode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public BaseNumericNode GetUnderlayingNode()
8989
/// <summary>Converts the memory value to a bit string.</summary>
9090
/// <param name="memory">The process memory.</param>
9191
/// <returns>The value converted to a bit string.</returns>
92-
private string ConvertValueToGroupedBitString(MemoryBuffer memory)
92+
private string ConvertValueToBitString(MemoryBuffer memory)
9393
{
9494
Contract.Requires(memory != null);
9595
Contract.Ensures(Contract.Result<string>() != null);
@@ -139,7 +139,7 @@ public override Size Draw(ViewInfo view, int x, int y)
139139
AddHotSpot(view, rect, string.Empty, i, HotSpotType.Edit);
140140
}
141141

142-
var value = ConvertValueToGroupedBitString(view.Memory);
142+
var value = ConvertValueToBitString(view.Memory);
143143

144144
x = AddText(view, x, y, view.Settings.ValueColor, HotSpot.NoneId, value) + view.Font.Width;
145145

0 commit comments

Comments
 (0)