Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ abstract class Shape
if (!compactId) this.id
else {
val start = this.id.indexOf("#")
this.id.substring(start)
if (start < 0) this.id else this.id.substring(start)
}
s"$clazz@$memoryAddress: $id"
}

override protected def nameField: Field = Name

def displayName: StrField = fields.field(DisplayName)
Expand Down