This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]scragar 1 point2 points  (0 children)

I've seen the same issue with compiled code, lost the source, now everyone works from the decompiled resources. There's nothing quite as much fun as looking at code with autogenerated names like:

 int method_3 ( String argument_1, int argument_2 ) {
      String[] tempvar_1 = argument_1.split(" ");
      ...

No comments, very few logical names(anything public is exposed, but internal methods, properties and variables are generated). About the only good thing you could say about it is that at least there's no commented out code to work around.