beautification

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1257 379699f6-c40d-0410-875b-85095c16579e
master
hoenicke 25 years ago
parent bf597fea43
commit 0b2f10fddf
  1. 4
      jode/jode/decompiler/ClassAnalyzer.java
  2. 1
      jode/jode/decompiler/MethodAnalyzer.java

@ -308,8 +308,7 @@ public class ClassAnalyzer
// First analyze constructors and synthetic fields:
constrAna = null;
if (constructors.length > 0) {
for (int j=0; j< constructors.length; j++)
{
for (int j=0; j< constructors.length; j++) {
if (pl != null) {
double constrCompl = constructors[j].getComplexity()
* subScale;
@ -408,6 +407,7 @@ public class ClassAnalyzer
}
public void makeDeclaration(Set done) {
// First prepare constructors:
if (constrAna != null)
constrAna.transform();
if (staticConstructor != null) {

@ -635,6 +635,7 @@ public class MethodAnalyzer implements Scope, ClassDeclarer {
if (!li.isShadow())
imports.useType(li.getType());
}
for (int i=0; i < param.length; i++) {
param[i].guessName();
Iterator doneIter = done.iterator();

Loading…
Cancel
Save