Issue #45 Unicode character cannot save

Code formatting
This commit is contained in:
Jindra Pet��k
2013-03-30 16:43:26 +01:00
parent d3bd9b641d
commit be106cc34b
772 changed files with 84378 additions and 84353 deletions
@@ -27,39 +27,39 @@ import java.util.Stack;
*/
public class UnknownJumpException extends RuntimeException {
/**
* Actual stack
*/
public Stack stack;
/**
* Actual address
*/
public long addr;
/**
* Output of the method before raising the exception
*/
public List<TreeItem> output;
/**
* Actual stack
*/
public Stack stack;
/**
* Actual address
*/
public long addr;
/**
* Output of the method before raising the exception
*/
public List<TreeItem> output;
/**
* Constructor
*
* @param stack Actual stack
* @param addr Actual address
* @param output Output of the method before raising the exception
*/
public UnknownJumpException(Stack stack, long addr, List<TreeItem> output) {
this.stack = stack;
this.addr = addr;
this.output = output;
}
/**
* Constructor
*
* @param stack Actual stack
* @param addr Actual address
* @param output Output of the method before raising the exception
*/
public UnknownJumpException(Stack stack, long addr, List<TreeItem> output) {
this.stack = stack;
this.addr = addr;
this.output = output;
}
/**
* Returns a string representation of the object
*
* @return a string representation of the object.
*/
@Override
public String toString() {
return "Unknown jump to " + addr;
}
/**
* Returns a string representation of the object
*
* @return a string representation of the object.
*/
@Override
public String toString() {
return "Unknown jump to " + addr;
}
}