Hi guys
Thanks for your tutorial
But I believe there might have something missing here in Ternarization.md
Here is another example, taken from the JTL code development. The following code excerpt uses the string s twice.
if (tail.isEmpty())
return s;
return s + ":" + tail.toString();
to
if (tail.isEmpty())
return s;
else
return s + ":" + tail.toString();
Correction file here