Chromium Code Reviews| Index: xfa/fxbarcode/common/BC_CommonECI.cpp |
| diff --git a/xfa/fxbarcode/common/BC_CommonECI.cpp b/xfa/fxbarcode/common/BC_CommonECI.cpp |
| index 4e37aec566bd852320bb9f91a48e42909ec66c93..d8e2504acac128f0e768fd318101c36c140bbeea 100644 |
| --- a/xfa/fxbarcode/common/BC_CommonECI.cpp |
| +++ b/xfa/fxbarcode/common/BC_CommonECI.cpp |
| @@ -34,9 +34,7 @@ int32_t CBC_CommonECI::GetValue() { |
| CBC_CommonECI* CBC_CommonECI::GetEICByValue(int32_t value, int32_t& e) { |
| if (value < 0 || value > 999999) { |
| e = BCExceptionBadECI; |
| - return NULL; |
| + return nullptr; |
|
dsinclair
2016/06/09 18:40:06
nit: this can be removed since we always return nu
Lei Zhang
2016/06/09 22:31:47
I suspect CBC_CommonECI is not all that useful. I'
|
| } |
| - if (value < 900) { |
| - } |
| - return NULL; |
| + return nullptr; |
| } |