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
561561 public static readonly Pattern Literal = Pattern . Compile ( "(?:" + Plain + "(?:" +
562562 Datatype + "|" + Language + ")?)" ) ;
563563
564- public static readonly Pattern Ws = Pattern . Compile ( "[ \\ t]+" ) ;
565-
566564 public static readonly Pattern Wso = Pattern . Compile ( "[ \\ t]*" ) ;
567565
568566 public static readonly Pattern Eoln = Pattern . Compile ( "(?:\r \n )|(?:\n )|(?:\r )" ) ;
569567
570568 public static readonly Pattern EmptyOrComment = Pattern . Compile ( "^" + Wso + "(#.*)?$" ) ;
571569
572570 public static readonly Pattern Subject = Pattern . Compile ( "(?:" + Iri + "|" + Bnode
573- + ")" + Ws ) ;
571+ + ")" + Wso ) ;
574572
575- public static readonly Pattern Property = Pattern . Compile ( Iri . GetPattern ( ) + Ws . GetPattern
576- ( ) ) ;
573+ public static readonly Pattern Property = Pattern . Compile ( Iri . GetPattern ( ) + Wso ) ;
577574
578575 public static readonly Pattern Object = Pattern . Compile ( "(?:" + Iri + "|" + Bnode
579576 + "|" + Literal + ")" + Wso ) ;
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
3+ using System . Diagnostics ;
34using System . IO ;
45using System . Linq ;
56using JsonLD . Core ;
You can’t perform that action at this time.
0 commit comments