From 4bc52e9f7890ec7d31345829301faf8f05b0e7bc Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Wed, 27 Mar 2013 23:34:44 -0400 Subject: [PATCH] Remove no longer needed member. --- src/apps/debugger/model/Thread.cpp | 4 +--- src/apps/debugger/model/Thread.h | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/apps/debugger/model/Thread.cpp b/src/apps/debugger/model/Thread.cpp index 0dc319fb6a..a52c6e1600 100644 --- a/src/apps/debugger/model/Thread.cpp +++ b/src/apps/debugger/model/Thread.cpp @@ -1,4 +1,5 @@ /* + * Copyright 2013, Rene Gollent, rene@gollent.com. * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. * Distributed under the terms of the MIT License. */ @@ -17,7 +18,6 @@ Thread::Thread(Team* team, thread_id threadID) fTeam(team), fID(threadID), fState(THREAD_STATE_UNKNOWN), - fExecutedSubroutine(false), fReturnValueInfos(NULL), fStoppedReason(THREAD_STOPPED_UNKNOWN), fCpuState(NULL), @@ -77,7 +77,6 @@ Thread::SetState(uint32 state, uint32 reason, const BString& info) if (fState != THREAD_STATE_STOPPED) { SetCpuState(NULL); SetStackTrace(NULL); - fExecutedSubroutine = false; ClearReturnValueInfos(); } @@ -128,7 +127,6 @@ Thread::AddReturnValueInfo(ReturnValueInfo* info) return B_NO_MEMORY; info->AcquireReference(); - fExecutedSubroutine = true; return B_OK; } diff --git a/src/apps/debugger/model/Thread.h b/src/apps/debugger/model/Thread.h index e25a6c78ad..9f936c7822 100644 --- a/src/apps/debugger/model/Thread.h +++ b/src/apps/debugger/model/Thread.h @@ -1,4 +1,5 @@ /* + * Copyright 2013, Rene Gollent, rene@gollent.com. * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. * Distributed under the terms of the MIT License. */ @@ -81,7 +82,6 @@ private: thread_id fID; BString fName; uint32 fState; - bool fExecutedSubroutine; ReturnValueInfoList* fReturnValueInfos; uint32 fStoppedReason;