File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
src/OneScript.StandardLibrary Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ This Source Code Form is subject to the terms of the
77
88using System ;
99using OneScript . Contexts . Enums ;
10- using OneScript . StandardLibrary . XMLSchema . Enumerations ;
1110using OneScript . Types ;
1211using ScriptEngine . Machine . Contexts ;
1312
Original file line number Diff line number Diff line change @@ -5,10 +5,8 @@ This Source Code Form is subject to the terms of the
55at http://mozilla.org/MPL/2.0/.
66----------------------------------------------------------*/
77
8- using System . Collections . Generic ;
98using System . Xml ;
109using OneScript . Contexts . Enums ;
11- using OneScript . StandardLibrary . XMLSchema . Enumerations ;
1210using OneScript . Types ;
1311using ScriptEngine . Machine . Contexts ;
1412
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ This Source Code Form is subject to the terms of the
77
88using System . Xml ;
99using OneScript . Contexts . Enums ;
10- using OneScript . StandardLibrary . XMLSchema . Enumerations ;
1110using OneScript . Types ;
1211using ScriptEngine . Machine . Contexts ;
1312
@@ -19,8 +18,8 @@ public class XmlSpaceEnum : ClrEnumWrapperCached<XmlSpace>
1918 private XmlSpaceEnum ( TypeDescriptor typeRepresentation , TypeDescriptor valuesType )
2019 : base ( typeRepresentation , valuesType )
2120 {
22- this . WrapClrValue ( "ПоУмолчанию" , "Default" , XmlSpace . Default ) ;
23- this . WrapClrValue ( "Сохранять" , "Preserve" , XmlSpace . Preserve ) ;
21+ MakeValue ( "ПоУмолчанию" , "Default" , XmlSpace . Default ) ;
22+ MakeValue ( "Сохранять" , "Preserve" , XmlSpace . Preserve ) ;
2423 }
2524
2625 public static XmlSpaceEnum CreateInstance ( ITypeManager typeManager )
You can’t perform that action at this time.
0 commit comments