Remove additional separator in frame list
authorIgor Kulaychuk <i.kulaychuk@samsung.com>
Thu, 13 Jul 2017 03:21:20 +0000 (06:21 +0300)
committerIgor Kulaychuk <i.kulaychuk@samsung.com>
Mon, 13 Nov 2017 19:22:40 +0000 (22:22 +0300)
src/debug/debugger/frames.cpp

index 87c6dc5..0c08df6 100644 (file)
@@ -228,7 +228,6 @@ HRESULT PrintFrames(ICorDebugThread *pThread, std::string &output, int lowFrame
                     std::string frameLocation;
                     PrintFrameLocation(pFrame, frameLocation);
 
-                    ss << (currentFrame != 0 ? "," : "");
                     ss << "frame={level=\"" << currentFrame << "\",";
                     if (!frameLocation.empty())
                         ss << frameLocation << ",";