*** empty log message ***

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@908 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 13d300eb66
commit 6caafb3940
  1. 1
      jode/jode/expr/Operator.java
  2. 2
      jode/test/HintTypeTest.java

@ -30,6 +30,7 @@ import jode.util.SimpleSet;
///#endif
public abstract class Operator extends Expression {
/* Don't reorder these constants unless you know what you are doing! */
public final static int ADD_OP = 1;
public final static int SUB_OP = 2;
public final static int SHIFT_OP = 6;

@ -36,7 +36,7 @@ public class HintTypeTest {
public void charLocal() {
String s= "Hallo";
for (int i=0; i< s.length(); i++) {
for (byte i=0; i< s.length(); i++) {
char c = s.charAt(i);
if (c == 'H')
// The widening to int doesn't occur in byte code, but

Loading…
Cancel
Save