Changes between Initial Version and Version 1 of Ticket #54542, comment 6


Ignore:
Timestamp:
Feb 24, 2018, 1:50:57 AM (6 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54542, comment 6

    initial v1  
    33Thanks for moving this one forward.  Your list of replacements is good, but can't be treated as an exact substitution because line 465 looks like this:
    44
     5{{{
    56     data->filters = [NSMutableArray<NSArray<NSString *> *> arrayWithCapacity:n_filters];
     7}}}
    68 
    79We have to change that to:
    810
     11{{{
    912     data->filters = [NSMutableArray arrayWithCapacity:n_filters];
    10  
     13}}}