Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ffcccc
class Foo {
  public static public final int VERSION = 1;
  // ...
}

...

Code Block
bgColor#ccccff
class Foo {
  private static private final int version = 1;
  public static public final String getVersion() {
    return version;
  }

  // ...
}

...