Improve code quality
yashk2000 opened this issue · 0 comments
yashk2000 commented
Describe the chore
Code quality can be improved a bit.
- Replacing get calls with indexing operator
- Declare variables whose value isn't updated as
val
instead ofvar
- Removing redundant overrides
- Use property access syntax where possible
- Use
isEmpty()
instead of== 0
, etc.