google-code-export / wwwsqldesigner

Automatically exported from code.google.com/p/wwwsqldesigner
BSD 3-Clause "New" or "Revised" License
1 stars 1 forks source link

Code style is inconsistent. #44

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Purely code style issues, namely

if (l) this.typeIndex[l] = i;
should be
if (l) { this.typeIndex[l] = i; }

and an object initialization should be moved to beginning of the
block to be consistent.

I missed it when submitting the patch that got integrated in r60.
Patch attached.

Original issue reported on code.google.com by ober.14@osu.edu on 10 Nov 2009 at 1:50

Attachments:

GoogleCodeExporter commented 9 years ago
Commited in r61.

Original comment by ondrej.zara on 10 Nov 2009 at 1:54