File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 3
3
/// <summary>
4
4
/// A simple marker interface to use for storing handlings (which will be cast out later)
5
5
/// </summary>
6
- public interface IJsonRpcHandler { string Key { get ; } }
6
+ public interface IJsonRpcHandler
7
+ {
8
+ string Key { get ; }
9
+ }
7
10
}
Original file line number Diff line number Diff line change @@ -60,13 +60,16 @@ public string Pattern
60
60
public static explicit operator string ( DocumentFilter documentFilter )
61
61
{
62
62
var items = new List < string > ( ) ;
63
- if ( documentFilter . HasLanguage ) {
63
+ if ( documentFilter . HasLanguage )
64
+ {
64
65
items . Add ( documentFilter . Language ) ;
65
66
}
66
- if ( documentFilter . HasScheme ) {
67
+ if ( documentFilter . HasScheme )
68
+ {
67
69
items . Add ( documentFilter . Scheme ) ;
68
70
}
69
- if ( documentFilter . HasPattern ) {
71
+ if ( documentFilter . HasPattern )
72
+ {
70
73
items . Add ( documentFilter . Pattern ) ;
71
74
}
72
75
return $ "[{ string . Join ( ", " , items ) } ]";
You can’t perform that action at this time.
0 commit comments