diff options
author | Björn Gustavsson <[email protected]> | 2014-12-16 07:43:22 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-01-12 12:22:58 +0100 |
commit | 92f5fe1fdd4982a48fe903b8d864501cc3e7e6c2 (patch) | |
tree | c4fc85bdd820921625ac653157c1d3fecf990b24 /lib/asn1/test | |
parent | 819d4c5622c7c90e2929e349a8f8f2a9df4c72a2 (diff) | |
download | otp-92f5fe1fdd4982a48fe903b8d864501cc3e7e6c2.tar.gz otp-92f5fe1fdd4982a48fe903b8d864501cc3e7e6c2.tar.bz2 otp-92f5fe1fdd4982a48fe903b8d864501cc3e7e6c2.zip |
Remove useless fields in #state{}
Three fields ('type','value', and 'vname') are almost unused. They
are set, but almost never read. Eliminate the last remaining uses
and the fields themselves.
Diffstat (limited to 'lib/asn1/test')
-rw-r--r-- | lib/asn1/test/error_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asn1/test/error_SUITE.erl b/lib/asn1/test/error_SUITE.erl index 2960304193..c6b6e9dffc 100644 --- a/lib/asn1/test/error_SUITE.erl +++ b/lib/asn1/test/error_SUITE.erl @@ -175,8 +175,8 @@ enumerated(Config) -> [ {structured_error,{M,3},asn1ct_check,{undefined,d}}, {structured_error,{M,5},asn1ct_check,{undefined,z}}, - {structured_error,{M,10},asn1ct_check,{undefined,aa}}, - {structured_error,{M,13},asn1ct_check,{undefined,xyz}}, + {structured_error,{M,6},asn1ct_check,{undefined,aa}}, + {structured_error,{M,12},asn1ct_check,{undefined,xyz}}, {structured_error,{M,15},asn1ct_check, {enum_illegal_redefinition,b}}, {structured_error,{M,16},asn1ct_check, |