patricmutwiri / symja

Automatically exported from code.google.com/p/symja
0 stars 0 forks source link

Backwards compatibility: F.initSymbols(); #5

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Code compiled against previous releases could rely on F.initSymbols();
The new code only has F.initSymbols(String s);

After looking at the implementation, I propose that you should add an 
overloaded call to preserve backwards compatibility:

public F.initSymbols() {
  F.initSymbols(null);
}

Thanks!

Original issue reported on code.google.com by Speis...@gmail.com on 21 Oct 2009 at 3:52

GoogleCodeExporter commented 9 years ago
Done:
http://code.google.com/p/symja/source/detail?r=267

Original comment by axelclk@gmail.com on 21 Oct 2009 at 4:11