Skip to content

Commit

Permalink
refactor: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
R0tenur committed Oct 20, 2023
1 parent 27e4e78 commit a624799
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/app/services/fake-db.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ export class FakeDbService {

private randomColumns(): string {
let columns = '';
for (let index = 0; index < Math.random() * 10 + 1; index++) {
// NOSONSAR Just for testing
for (let index = 0; index < Math.random() * 10 + 1; index++) { // NOSONSAR Just for testing
columns += this.randomString() + '\n';
}
return columns;
Expand Down

0 comments on commit a624799

Please sign in to comment.