@@ -527,20 +527,20 @@ case class StackTrace(elems: Seq[String]) {
527527}
528528
529529case class ThreadStackTrace (
530- threadId : Long ,
531- threadName : String ,
532- threadState : Thread .State ,
533- stackTrace : StackTrace ,
534- blockedByThreadId : Option [Long ],
535- blockedByLock : String ,
530+ val threadId : Long ,
531+ val threadName : String ,
532+ val threadState : Thread .State ,
533+ val stackTrace : StackTrace ,
534+ val blockedByThreadId : Option [Long ],
535+ val blockedByLock : String ,
536536 @ deprecated(" using synchronizers and monitors instead" , " 4.0.0" )
537- holdingLocks : Seq [String ],
538- synchronizers : Seq [String ],
539- monitors : Seq [String ],
540- lockName : Option [String ],
541- lockOwnerName : Option [String ],
542- suspended : Boolean ,
543- inNative : Boolean ) {
537+ val holdingLocks : Seq [String ],
538+ val synchronizers : Seq [String ],
539+ val monitors : Seq [String ],
540+ val lockName : Option [String ],
541+ val lockOwnerName : Option [String ],
542+ val suspended : Boolean ,
543+ val inNative : Boolean ) {
544544
545545 /**
546546 * Returns a string representation of this thread stack trace
0 commit comments