Skip to content

Commit

Permalink
Changed tabs to 4 space characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Burd committed Oct 30, 2011
1 parent 0544cc1 commit ca8e632
Show file tree
Hide file tree
Showing 14 changed files with 1,283 additions and 1,283 deletions.
2 changes: 1 addition & 1 deletion src/main/java/kilim/Mailbox.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void run() {

timeoutMillis = end - System.currentTimeMillis();
if (timeoutMillis <= 0) {
removeMsgAvailableListener(t);
removeMsgAvailableListener(t);
break;
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/kilim/analysis/BasicBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public BasicBlock(MethodFlow aflow, Label aStartLabel) {
}

Detector detector() {
return flow.detector();
return flow.detector();
}

/**
Expand Down Expand Up @@ -361,9 +361,9 @@ int initialize(int pos) {
break;

default:
if (opcode >= 26 && opcode <= 45)
throw new IllegalStateException("instruction variants not expected here");
if (opcode >= 26 && opcode <= 45)
throw new IllegalStateException("instruction variants not expected here");
break;
}

Expand Down
8 changes: 4 additions & 4 deletions src/main/java/kilim/analysis/ClassWeaver.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ public class ClassWeaver {
List<ClassInfo> classInfoList = new LinkedList<ClassInfo>();

static ThreadLocal<HashSet<String>> stateClasses = new ThreadLocal<HashSet<String>>() {
protected java.util.HashSet<String> initialValue() {
return new HashSet<String>();
}
protected java.util.HashSet<String> initialValue() {
return new HashSet<String>();
}
};

public static void reset() {
stateClasses.set(new HashSet<String>());
stateClasses.set(new HashSet<String>());
}

public ClassWeaver(byte[] data) {
Expand Down
14 changes: 7 additions & 7 deletions src/main/java/kilim/analysis/MethodFlow.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
*/
public class MethodFlow extends MethodNode {

/**
* The classFlow to which this methodFlow belongs
*/
Expand Down Expand Up @@ -85,7 +85,7 @@ public class MethodFlow extends MethodNode {

private List<MethodInsnNode> pausableMethods = new LinkedList<MethodInsnNode>();

private final Detector detector;
private final Detector detector;

public MethodFlow(
ClassFlow classFlow,
Expand Down Expand Up @@ -182,8 +182,8 @@ private String toString(String className, String methName, String desc) {
/*
@Override
public void visitLineNumber(int line, Label start) {
// TODO Auto-generated method stub
super.visitLineNumber(line, start);
// TODO Auto-generated method stub
super.visitLineNumber(line, start);
}
*/

Expand Down Expand Up @@ -411,7 +411,7 @@ Label getOrCreateLabelAtPos(int pos) {

@Override
public LabelNode getLabelNode(Label arg0) {
return super.getLabelNode(arg0);
return super.getLabelNode(arg0);
}

int getLabelPosition(LabelNode l) {
Expand Down Expand Up @@ -597,8 +597,8 @@ public boolean isBridge() {
return ((this.access & ACC_VOLATILE) != 0);
}

public Detector detector() {
return this.classFlow.detector();
public Detector detector() {
return this.classFlow.detector();
}


Expand Down
16 changes: 8 additions & 8 deletions src/main/java/kilim/analysis/NopInsn.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ public void accept(MethodVisitor mv) {
// Do nothing
}

/* (non-Javadoc)
* @see org.objectweb.asm.tree.AbstractInsnNode#clone(java.util.Map)
*/
@Override
public AbstractInsnNode clone(Map arg0) {
// TODO Auto-generated method stub
return this;
}
/* (non-Javadoc)
* @see org.objectweb.asm.tree.AbstractInsnNode#clone(java.util.Map)
*/
@Override
public AbstractInsnNode clone(Map arg0) {
// TODO Auto-generated method stub
return this;
}
}
Loading

0 comments on commit ca8e632

Please sign in to comment.