If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler
NEW : We have got a new blog where we post some interesting SWF internals info.

#275 returnvoid as last statement
Author:
soywiz

Date created:
Type: feature
Visibility: Everybody
Assigned to:
Labels: Decompilation
State: closed 

It would be great if it removes the last return statement on void functions.
override protected function init() : void {
super.init();
mouseEnabled=false;
mouseChildren=false;
return;
}
-->
override protected function init() : void {
super.init();
mouseEnabled=false;
mouseChildren=false;
}
State: new→opened
version 1.7.0 was released
this was implemented, try it
State: opened→upgraded
State: upgraded→closed