From: <jsa...@us...> - 2008-10-23 15:49:15
|
Revision: 31 http://flexotask.svn.sourceforge.net/flexotask/?rev=31&view=rev Author: jsauerbach Date: 2008-10-23 15:49:07 +0000 (Thu, 23 Oct 2008) Log Message: ----------- Fix class names that got broken when classes moved. Modified Paths: -------------- trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/CodeRewriter.java trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/InstructionUtils.java Modified: trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/CodeRewriter.java =================================================================== --- trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/CodeRewriter.java 2008-10-23 15:45:52 UTC (rev 30) +++ trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/CodeRewriter.java 2008-10-23 15:49:07 UTC (rev 31) @@ -487,7 +487,7 @@ final int idxRuntimeExceptionClass = toAnalyzeGen.getConstantPool().addClass("java.lang.RuntimeException"); final int idxErrorClass = toAnalyzeGen.getConstantPool().addClass("java.lang.Error"); final int idxObjectClass = toAnalyzeGen.getConstantPool().addClass("java.lang.Object"); - final int idxEAExceptionClass = toAnalyzeGen.getConstantPool().addClass("com.ibm.realtime.flexotask.ExecutionAbortedException"); + final int idxEAExceptionClass = toAnalyzeGen.getConstantPool().addClass("com.ibm.realtime.flexotask.system.ExecutionAbortedException"); final int idxAExceptionClass = toAnalyzeGen.getConstantPool().addClass("com.ibm.realtime.flexotask.AtomicException"); final int idxISExceptionClass = toAnalyzeGen.getConstantPool().addClass("java.lang.IllegalStateException"); // add necessary methods to CP @@ -533,7 +533,7 @@ ilEpilog.append(new ATHROW()); // throw 'AtomicException' // add exception handler for ExecutionAbortedException - toAnalyzeGen.addExceptionHandler(ihEpilogStart, ihEpilogExceptionHndlStart.getPrev(), ihEpilogExceptionHndlStart, new ObjectType("com.ibm.realtime.flexotask.ExecutionAbortedException")); + toAnalyzeGen.addExceptionHandler(ihEpilogStart, ihEpilogExceptionHndlStart.getPrev(), ihEpilogExceptionHndlStart, new ObjectType("com.ibm.realtime.flexotask.system.ExecutionAbortedException")); // EPILOG end Modified: trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/InstructionUtils.java =================================================================== --- trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/InstructionUtils.java 2008-10-23 15:45:52 UTC (rev 30) +++ trunk/flexotask-development/src/com/ibm/realtime/flexotask/development/rewriting/InstructionUtils.java 2008-10-23 15:49:07 UTC (rev 31) @@ -24,7 +24,7 @@ */ class InstructionUtils implements OpcodeConstants { - private static final String TXN_OPERATIONS = "com.ibm.realtime.flexotask.TransactionalOperations"; + private static final String TXN_OPERATIONS = "com.ibm.realtime.flexotask.system.TransactionalOperations"; static InstructionList getSubroutineJumpForReturnInstruction(ReturnInstruction ins, InstructionHandle ihSubroutine, int localVarIdx) { InstructionList ilJsr = new InstructionList(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |