0001-Remove-the-ascii-string-converter_531bea6.patch

S. Barut, 10/01/2018 02:09 PM

Download (1.89 KB)

View differences:

rsb-cil/Rsb/Converter/DefaultConverterRepository.cs
22 22
                new UInt32Converter(),
23 23
                new UInt64Converter(),
24 24
                new BoolConverter(),
25
                new StringConverter(false),
25
                //new StringConverter(false), removing ascii-string converter
26 26
                new StringConverter(),
27 27
                new ByteConverter(),
28 28
                //new ScopeConverter()
......
45 45
                        new IsExactMatch<string>(signature.Schema),
46 46
                        converter
47 47
                        ));
48
                
49
                // this will add a second string converter in the informer list.
50
                // I assume the first one wins and i don't think, that this is intended. Checks and Exceptions should be added at sometime
51
                
48
                                
52 49
                serializationConverterList.Add(
53 50
                    new Tuple<PredicateConverterSelection<Type>.Predicate, IConverter>(
54 51
                        new IsExactMatch<Type>(signature.DataType),
55
-