Versions Compared

Key

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

...

All public and internal APIs should have useful javadocs. For all public 
APIs (anything not in /internal/), new additions to the javadocs 
should include an @since tag to let the users know when the feature was 
added. Eg

/**
   * Returns a collection of all of the CacheServers
   * that can serve the contents of this Cache> to clients.
   *
   * @see #addCacheServer
   *
   * @since 5.7
   */
  public List<CacheServer> getCacheServers();

Any feature which is deprecated should specify a link to the new alternative.

Use of hardcoded "/" in region paths or names

When writing code in a module which has a dependency on geode-core, the Region.SEPARATOR and Region.SEPARATOR_CHAR constants should be used instead of hardcoded "/" characters in region names and paths.

It's best to start small with bug fixes or smaller features. Please feel free to discuss things and ask for help on the mailing list if you are interested in contributing.

...