File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -561,19 +561,16 @@ private class Regex
561
561
public static readonly Pattern Literal = Pattern . Compile ( "(?:" + Plain + "(?:" +
562
562
Datatype + "|" + Language + ")?)" ) ;
563
563
564
- public static readonly Pattern Ws = Pattern . Compile ( "[ \\ t]+" ) ;
565
-
566
564
public static readonly Pattern Wso = Pattern . Compile ( "[ \\ t]*" ) ;
567
565
568
566
public static readonly Pattern Eoln = Pattern . Compile ( "(?:\r \n )|(?:\n )|(?:\r )" ) ;
569
567
570
568
public static readonly Pattern EmptyOrComment = Pattern . Compile ( "^" + Wso + "(#.*)?$" ) ;
571
569
572
570
public static readonly Pattern Subject = Pattern . Compile ( "(?:" + Iri + "|" + Bnode
573
- + ")" + Ws ) ;
571
+ + ")" + Wso ) ;
574
572
575
- public static readonly Pattern Property = Pattern . Compile ( Iri . GetPattern ( ) + Ws . GetPattern
576
- ( ) ) ;
573
+ public static readonly Pattern Property = Pattern . Compile ( Iri . GetPattern ( ) + Wso ) ;
577
574
578
575
public static readonly Pattern Object = Pattern . Compile ( "(?:" + Iri + "|" + Bnode
579
576
+ "|" + Literal + ")" + Wso ) ;
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
+ using System . Diagnostics ;
3
4
using System . IO ;
4
5
using System . Linq ;
5
6
using JsonLD . Core ;
You can’t perform that action at this time.
0 commit comments