Stephcraft / Project-16x16

2D Platformer game made with processing
GNU General Public License v3.0
97 stars 77 forks source link

Code review: avoid meaningless naming #163

Closed danmigdev closed 2 years ago

danmigdev commented 2 years ago
public class Multiplayer {

    /**
     * A client connects to a server and sends data back and forth.
     */
    private Client c;
    /**
     * A server sends and receives data to and from its associated clients (other
     * programs connected to it)
     */
    private Server s;

Names like c (as per client) and s (as per server) must be avoided since code readability is reduced. I'd go for a full code base review.

danmigdev commented 2 years ago

Pull request #161