This pull request aims to fix the compilation errors in the OrderBookTest.java file by reverting the changes that moved the enum classes out of the Order class and keeping them as inner classes. This will maintain the original structure of the codebase that the rest of the code expects.
Description
The changes in this pull request include:
Reverting the changes in Order.java that moved the enum classes (TimeInForce, RejectReason, CancelRejectReason, CancelReason, ReduceRejectReason, Type, ExecuteSide, and Side) out of the Order class and keeping them as inner classes.
Updating the imports in the OrderBookTest.java file to use the enum classes from the Order class instead of the standalone enum classes.
Removing the standalone enum files (Side.java, TimeInForce.java, Type.java, ExecuteSide.java, CancelReason.java, and RejectReason.java) that were created earlier.
Summary
The key changes in this pull request are:
Order.java: Reverted changes that moved enums out of the Order class, keeping them as inner classes.
OrderBookTest.java: Updated imports to use the enum classes from the Order class.
Purpose
This pull request aims to fix the compilation errors in the
OrderBookTest.java
file by reverting the changes that moved the enum classes out of theOrder
class and keeping them as inner classes. This will maintain the original structure of the codebase that the rest of the code expects.Description
The changes in this pull request include:
Order.java
that moved the enum classes (TimeInForce
,RejectReason
,CancelRejectReason
,CancelReason
,ReduceRejectReason
,Type
,ExecuteSide
, andSide
) out of theOrder
class and keeping them as inner classes.OrderBookTest.java
file to use the enum classes from theOrder
class instead of the standalone enum classes.Side.java
,TimeInForce.java
,Type.java
,ExecuteSide.java
,CancelReason.java
, andRejectReason.java
) that were created earlier.Summary
The key changes in this pull request are:
Order.java
: Reverted changes that moved enums out of theOrder
class, keeping them as inner classes.OrderBookTest.java
: Updated imports to use the enum classes from theOrder
class.Side.java
,TimeInForce.java
,Type.java
,ExecuteSide.java
,CancelReason.java
, andRejectReason.java
.Fixes:
In pull request https://github.com/wwzeng1/CoralME/pull/11. Continue the conversation here: http://localhost:3000/c/c41c4651-20cd-4042-a02b-fc6ac628446c.
To have Sweep make further changes, please add a comment to this PR starting with "Sweep:".
:book: For more information on how to use Sweep, please read our documentation.