Skip to content

Commit 2872460

Browse files
committed
remove unnecessary _
1 parent d1e7536 commit 2872460

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dotnet/src/webdriver/Interactions/KeyInputDevice.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@ public override string ToString()
115115

116116
private class TypingInteraction : Interaction
117117
{
118-
private readonly string _type;
118+
private readonly string type;
119119

120120
public TypingInteraction(InputDevice sourceDevice, string type, char codePoint)
121121
: base(sourceDevice)
122122
{
123-
this._type = type;
123+
this.type = type;
124124
this.Value = codePoint.ToString();
125125
}
126126

@@ -130,7 +130,7 @@ public override Dictionary<string, object> ToDictionary()
130130
{
131131
Dictionary<string, object> toReturn = new Dictionary<string, object>();
132132

133-
toReturn["type"] = this._type;
133+
toReturn["type"] = this.type;
134134
toReturn["value"] = this.Value;
135135

136136
return toReturn;

0 commit comments

Comments
 (0)