File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ var Cell = /** @class */ (function () {
169
169
var layoutAttrs = { 'org.eclipse.elk.portConstraints' : 'FIXED_POS' } ;
170
170
var fixedPosX = null ;
171
171
var fixedPosY = null ;
172
- for ( var attr in Object . keys ( this . attributes ) ) {
172
+ for ( var attr in this . attributes ) {
173
173
if ( attr . startsWith ( 'org.eclipse.elk' ) ) {
174
174
if ( attr === 'org.eclipse.elk.x' ) {
175
175
fixedPosX = this . attributes [ attr ] ;
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ export default class Cell {
181
181
const layoutAttrs = { 'org.eclipse.elk.portConstraints' : 'FIXED_POS' } ;
182
182
let fixedPosX = null ;
183
183
let fixedPosY = null ;
184
- for ( const attr in Object . keys ( this . attributes ) ) {
184
+ for ( const attr in this . attributes ) {
185
185
if ( attr . startsWith ( 'org.eclipse.elk' ) ) {
186
186
if ( attr === 'org.eclipse.elk.x' ) {
187
187
fixedPosX = this . attributes [ attr ] ;
You can’t perform that action at this time.
0 commit comments