Skip to content

Commit

Permalink
code clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jafl committed Dec 29, 2024
1 parent 4dd6032 commit 9fbb026
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions code_medic/backend/jvm/Link.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "Pipe.h"

class JProcess;
class JXFunctionTask;
class JXIdleTask;

namespace jvm {

Expand Down Expand Up @@ -424,12 +424,12 @@ class Link : public ::Link
ThreadNode* itsThreadRoot;
JUInt64 itsCurrentThreadID;
JPtrArray<ThreadNode>* itsThreadList;
JXFunctionTask* itsCullThreadGroupsTask;
JXIdleTask* itsCullThreadGroupsTask;
JIndex itsCullThreadGroupIndex;

JArray<FrameInfo>* itsFrameList;

JXFunctionTask* itsJVMDeathTask;
JXIdleTask* itsJVMDeathTask;

private:

Expand Down
4 changes: 2 additions & 2 deletions code_medic/backend/lldb/Link.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ using j_lldb_cookie_fn_return = long;
using j_lldb_cookie_size = unsigned long;
#endif

class JXFunctionTask;
class JXIdleTask;

namespace lldb {

Expand Down Expand Up @@ -180,7 +180,7 @@ class Link : public ::Link, public SBListener
JString itsLastProgramInput; // to avoid printing echo

BreakpointManager* itsBPMgr;
JXFunctionTask* itsEventTask;
JXIdleTask* itsEventTask;

JString itsPrompt; // to allow GetCommandPrompt() to return JString&
JString itsCoreName;
Expand Down

0 comments on commit 9fbb026

Please sign in to comment.