Skip to content

Commit 51087a5

Browse files
authored
chore: removed some warnings from build logs (#575)
1 parent 9f3d3d1 commit 51087a5

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

src/Appium.Net/Appium/Android/Enums/AndroidKeyCode.cs

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//information regarding copyright ownership.
55
//You may obtain a copy of the License at
66
//
7-
/// http://www.apache.org/licenses/LICENSE-2.0
7+
// http://www.apache.org/licenses/LICENSE-2.0
88
//
99
//Unless required by applicable law or agreed to in writing, software
1010
//distributed under the License is distributed on an "AS IS" BASIS,
@@ -13,6 +13,9 @@
1313
//limitations under the License.
1414
namespace OpenQA.Selenium.Appium.Android
1515
{
16+
/// <summary>
17+
/// Some common key codes for Android Key Events.
18+
/// </summary>
1619
public sealed class AndroidKeyCode
1720
{
1821

@@ -452,7 +455,7 @@ public sealed class AndroidKeyCode
452455
/// </summary>
453456
public static readonly int KeycodeButton_THUMBR = 107;
454457

455-
/// </summary>
458+
/// <summary>
456459
/// Key code constant: X Button key. On a game controller, the X button should be either the button labeled X or the first button on the upper row of controller buttons.
457460
/// (0x00000063)
458461
/// </summary>
@@ -722,7 +725,7 @@ public sealed class AndroidKeyCode
722725
/// </summary>
723726
public static readonly int Keycode_F8 = 138;
724727

725-
/// </summary>
728+
/// <summary>
726729
/// Key code constant: F9 key.
727730
/// (0x0000008b)
728731
/// </summary>
@@ -1025,7 +1028,7 @@ public sealed class AndroidKeyCode
10251028
/// <summary>
10261029
/// Key code constant: Number modifier key. Used to enter numeric symbols. This key is not Num Lock; it is more like Keycode_ALT_LEFT and is public static readonly int erpreted as an ALT key by MetaKeyKeyListener.
10271030
/// (0x0000004e)
1028-
/// <summary>
1031+
/// </summary>
10291032
public static readonly int Keycode_NUM = 78;
10301033

10311034
/// <summary>
@@ -1145,7 +1148,7 @@ public sealed class AndroidKeyCode
11451148
/// <summary>
11461149
/// Key code constant: Numeric keypad '-' key (for subtraction).
11471150
/// (0x0000009c)
1148-
/// <summary>
1151+
/// </summary>
11491152
public static readonly int KeycodeNumpad_SUBTRACT = 156;
11501153

11511154
/// <summary>

src/Appium.Net/Appium/Enums/MobileCapabilityType.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
namespace OpenQA.Selenium.Appium.Enums
1616
{
17+
/// <summary>
18+
/// The list of common capabilities. Read: https://appium.github.io/appium/docs/en/2.0/guides/caps/
19+
/// </summary>
1720
public sealed class MobileCapabilityType
1821
{
1922
/// <summary>
@@ -56,7 +59,7 @@ public sealed class MobileCapabilityType
5659
/// </summary>
5760
public static readonly string AppiumVersion = "appium-version";
5861

59-
// <summary>
62+
/// <summary>
6063
/// Unique device identifier of the connected physical device
6164
/// </summary>
6265
public static readonly string Udid = "appium:udid";

0 commit comments

Comments
 (0)