Ragel currently outputs a method and static field for Java, eg:<br><br>private static byte[] init__tableLayout_trans_targs_0 () { return new byte[] {...}; }<br>private static final byte _tableLayout_trans_targs[] = init__tableLayout_trans_targs_0();<br>

<br>We could save a few bytes on class file size by just assigning the array, without an method:<br><br>
private static final byte _tableLayout_trans_targs[] = new byte[] {...};<br><br>The end result is the exactly the same, but less code needs to be output and the class files will be a little bit smaller.<br><br>-Nate<br>