This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
NOTE: I haven' tested tomcat yet, because my build isn't finished yet. Ant is not working 100% because of the stringtokenizer. GCJ problems: I believe that there's like a non continous range of constants used in one of the sources, I can' remember whether this causes gcj to break because it can't create class files or compile it to native code. PS Sorry about the tbz2 files, but I did a lot of pruning in most cases. the only thing that's sure for now is that I can get ant working, but haven' tested the functionality yet of the bcel and xalan tasks (I think the latter will fail because I couldn't link it in without excluding org.w3c.* classes, if I link xalan I get the known bug of the duplicate class, that's why I wanted to know if it's possible to split libgcj, I will try this week)
273c273,276 < } --- > } > > public > abstract void close();
104,113c104,111
< switch(val) {
< case ALL_INT: return ALL;
< case DEBUG_INT: return Level.DEBUG;
< case INFO_INT: return Level.INFO;
< case WARN_INT: return Level.WARN;
< case ERROR_INT: return Level.ERROR;
< case FATAL_INT: return Level.FATAL;
< case OFF_INT: return OFF;
< default: return defaultLevel;
< }
---
> if (val==ALL_INT) return ALL;
> else if (val==DEBUG_INT) return Level.DEBUG;
> else if (val==INFO_INT) return Level.INFO;
> else if (val==WARN_INT) return Level.WARN;
> else if (val==ERROR_INT) return Level.ERROR;
> else if (val==FATAL_INT) return Level.FATAL;
> else if (val==OFF_INT) return OFF;
> else return defaultLevel;
Attachment:
java.lst.tar.bz2
Description: application/bzip
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |