Skip to content

Commit 98718e2

Browse files
committed
remove unnecessary accessibility modifiers
1 parent e82ae0f commit 98718e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Smdn.Net.MuninNode/Smdn.Net.MuninNode.Protocol/IMuninNodeProfile.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public interface IMuninNodeProfile {
1919
/// <seealso href="https://guide.munin-monitoring.org/en/latest/master/network-protocol.html">
2020
/// Data exchange between master and node - `node` command
2121
/// </seealso>
22-
public string HostName { get; }
22+
string HostName { get; }
2323

2424
/// <summary>
2525
/// Gets the string representing the version information of the node.
@@ -30,7 +30,7 @@ public interface IMuninNodeProfile {
3030
/// <seealso href="https://guide.munin-monitoring.org/en/latest/master/network-protocol.html">
3131
/// Data exchange between master and node - `version` command
3232
/// </seealso>
33-
public string Version { get; }
33+
string Version { get; }
3434

3535
/// <summary>
3636
/// Gets the <see cref="IPluginProvider"/> representing the munin plugins provided by the node.
@@ -41,10 +41,10 @@ public interface IMuninNodeProfile {
4141
/// <seealso href="https://guide.munin-monitoring.org/en/latest/master/network-protocol.html">
4242
/// Data exchange between master and node - `list`, `config` and `fetch` command
4343
/// </seealso>
44-
public IPluginProvider PluginProvider { get; }
44+
IPluginProvider PluginProvider { get; }
4545

4646
/// <summary>
4747
/// Gets the <see cref="Encoding"/> used for data exchange with the <c>munin master</c>.
4848
/// </summary>
49-
public Encoding Encoding { get; }
49+
Encoding Encoding { get; }
5050
}

0 commit comments

Comments
 (0)