Skip to content

Commit

Permalink
GEODE-4910: Modify method description to mention exception. (apache#1657
Browse files Browse the repository at this point in the history
)
  • Loading branch information
PivotalSarge authored Mar 23, 2018
1 parent 1b66a65 commit 6446d17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion geode-core/src/main/java/org/apache/geode/cache/Region.java
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,9 @@ <SK, SV> Region<SK, SV> createSubregion(String subregionName,
V put(K key, V value, Object aCallbackArgument) throws TimeoutException, CacheWriterException;

/**
* Creates a new entry in this region with the specified key and value.
* Creates a new entry in this region with the specified key and value if and only if an entry
* does not already exist for the specified key. If an entry already exists for the specified
* key, throws {@link EntryExistsException}.
*
* <p>
* Updates the {@link CacheStatistics#getLastAccessedTime} and
Expand Down

0 comments on commit 6446d17

Please sign in to comment.