mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
remove redundant code
This commit is contained in:
parent
493eb2cf2f
commit
7e7d71d63e
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
2018-02-05 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSPortCoder.m: Remove redundant (always true) conditional.
|
||||
* Source/NSUnarchiver.m: Remove redundant (always true) conditional.
|
||||
|
||||
2018-02-04 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -638,7 +638,7 @@ static unsigned encodingVersion;
|
|||
/* If we have a perfect type match or we are coding a class as an ID,
|
||||
* we can just decode the array simply.
|
||||
*/
|
||||
if (info == amask || (info == _GSC_ID && amask == _GSC_CID))
|
||||
if (info == amask)
|
||||
{
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue