Skip to content

Latest commit

 

History

History
10 lines (5 loc) · 309 Bytes

message.adoc

File metadata and controls

10 lines (5 loc) · 309 Bytes

Message

Do not lock on writable field "xxx", use a readonly field instead.

Do not lock on local variable "xxx", use a readonly field instead.

Do not lock on a new instance because is a no-op, use a readonly field instead.

Do not lock on strings as they can be interned, use a readonly field instead.