Compiler projects fall 2022
EDAN70: Project in Computer Science
Detecting and Fixing Common Code Style Issues in Java
Alexander Magnusson
Abstract:
Code style is an important aspect of programming.
While two different pieces of code may perform the same task logically
one might be simpler to read and understand than the other.
Code written in an unnecessarily complex way might show that the
author might not have fully understood a certain concept.
In addition to reducing the complexity of the code itself,
adhering to a common code style help multiple developers
collaborating on the same code base understand code written by others quicker.
(paper)
(code)