@@ -829,7 +829,7 @@ public static IRubyObject fact_BMPString(ThreadContext context, IRubyObject self
829
829
return newInstance (context , self , "BMPString" , args );
830
830
}
831
831
832
- @ JRubyMethod (name =" Nul" , module =true , rest =true )
832
+ @ JRubyMethod (name ={ "Null" , " Nul"} , module =true , rest =true ) // TODO Nul name should be dropped
833
833
public static IRubyObject fact_Null (ThreadContext context , IRubyObject self , IRubyObject [] args ) {
834
834
return newInstance (context , self , "Null" , args );
835
835
}
@@ -849,6 +849,11 @@ public static IRubyObject fact_GeneralizedTime(ThreadContext context, IRubyObjec
849
849
return newInstance (context , self , "GeneralizedTime" , args );
850
850
}
851
851
852
+ @ JRubyMethod (name ="EndOfContent" , module =true , rest =true )
853
+ public static IRubyObject fact_EndOfContent (ThreadContext context , IRubyObject self , IRubyObject [] args ) {
854
+ return newInstance (context , self , "EndOfContent" , args );
855
+ }
856
+
852
857
@ JRubyMethod (name ="Sequence" , module =true , rest =true )
853
858
public static IRubyObject fact_Sequence (ThreadContext context , IRubyObject self , IRubyObject [] args ) {
854
859
return newInstance (context , self , "Sequence" , args );
0 commit comments