You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To prevent a ClassCircularityError, the MessageFormat class is loaded explicitly in agentMain. However since this is in main rather than premain, this only prevents the error on agent startup via dynamic attach.
We want to add the same logic to premain. There is already a class in place to handle this exact situation, InitProblemClasses. Put something in there for MessageFormat.
The text was updated successfully, but these errors were encountered:
To prevent a
ClassCircularityError
, theMessageFormat
class is loaded explicitly inagentMain
. However since this is in main rather than premain, this only prevents the error on agent startup via dynamic attach.We want to add the same logic to premain. There is already a class in place to handle this exact situation,
InitProblemClasses
. Put something in there forMessageFormat
.The text was updated successfully, but these errors were encountered: