Bug - Fixed Fails to compile at r9649

Aankhen

Member
I think this is coming from r9648, specifically the change to FightRequest:
Code:
compile:
     [echo] Using modern compiler
    [javac] Compiling 645 source files to C:\Dev\src\kolmafia\my\build
    [javac] C:\Dev\src\kolmafia\my\src\net\sourceforge\kolmafia\request\FightRequest.java:2800: cannot find symbol
    [javac] symbol  : variable CONDITIONAL_COMBATSKILL_PATTERN
    [javac] location: class net.sourceforge.kolmafia.request.FightRequest
    [javac]             Matcher m = FightRequest.CONDITIONAL_COMBATSKILL_PATTERN.matcher( responseText.substring( startIndex, endIndex ) );
    [javac]                                     ^
    [javac] 1 error
    [javac] Compile failed; see the compiler error output for details.
Perhaps slyz forgot to include that variable when committing?

Just to clarify, I’m at r9649 at the moment. r9648 is where the problem appears to have originated from.
 

lidden

Member
r9649 does not work for me either. The error is:
Code:
... snip ...
Could not find the main class: net.sourceforge.kolmafia.KoLmafia. Program will exit.
 

Darzil

Developer
9647 works for me, but 9649 is failing to run for me with the error : "Java Virtual Machine Launcher. Could not find the main class: net.sourceforge.kolmafia.KoLmafia. Program will exit."

It is also half the size of 9647.
 

slyz

Developer
Sorry about that. I tried to remove other unrelated changes I had made to FightRequest.java before committing, but now I have to redo CONDITIONAL_COMBATSKILL_PATTERN.
 
Top