<div dir="ltr">Hi.<div><br></div><div>Could you move this to treated (or delete it)?  Not the right answer on several levels.</div><div><br></div><div>Thanks,</div><div>-cbc</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 1, 2017 at 10:36 AM,  <span dir="ltr"><<a href="mailto:commits@source.squeak.org" target="_blank">commits@source.squeak.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">A new version of EToys was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/EToys-cbc.281.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/<wbr>inbox/EToys-cbc.281.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: EToys-cbc.281<br>
Author: cbc<br>
Time: 1 March 2017, 10:36:09.390463 am<br>
UUID: 8771d5cc-c82e-284f-89b3-<wbr>5dc460bea196<br>
Ancestors: EToys-ul.280<br>
<br>
Concatenating two KedamaFloatArrays together is failing; fixed.<br>
<br>
=============== Diff against EToys-ul.280 ===============<br>
<br>
Item was added:<br>
+ ----- Method: KedamaFloatArray>>, (in category 'copying') -----<br>
+ , otherCollection<br>
+       "Concatenate KedamaFloatArray's."<br>
+       "First, check to see that otherCollection is one of us - otherwise use<br>
+       standard call"<br>
+       otherCollection class = KedamaFloatArray<br>
+               ifFalse: [^ super , otherCollection].<br>
+       ^ self<br>
+               copyReplaceFrom: self size + 1<br>
+               to: self size<br>
+               with: otherCollection<br>
+ !<br>
<br>
<br>
</blockquote></div><br></div>