Kekun / gnome-games

Moving to gnome.org — A game manager application for GNOME
https://git.gnome.org/browse/gnome-games/
GNU General Public License v3.0
21 stars 4 forks source link

Coding style: write on line props accessors in one line #317

Open Kekun opened 8 years ago

Kekun commented 8 years ago

A rule to add: one line property getters and setters should be written in one line, hence write this:

public string product_number {
    get { return _product_number; }
}

Not this:

public string product_number {
    get {
        return _product_number;
    }
}