0001-Change-the-return-of-the-NullConverter_685072f.patch

S. Barut, 09/28/2018 12:53 PM

Download (966 Bytes)

View differences:

rsb-cil/Rsb/Converter/NullConverter.cs
12 12
            {
13 13
                throw new ConversionException("Unexpected wire schema for deserialization: " + data.Item1);
14 14
            }
15
            return null;
15
            return Null.Instance;
16 16
        }
17 17

  
18 18
        public ConverterSignature GetSignature()
19
-