Skip to content

Commit

Permalink
Fixed javadoc for issue #86
Browse files Browse the repository at this point in the history
  • Loading branch information
jankotek committed Aug 21, 2012
1 parent 46f97cc commit 8af7860
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/apache/jdbm/DB.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public interface DB {
<K, V> ConcurrentMap<K, V> getHashMap(String name);

/**
* Creates or load existing Map which persists data into DB.
* Creates Map which persists data into DB.
*
* @param name record name
* @return
Expand All @@ -99,7 +99,7 @@ public interface DB {


/**
* Creates or load existing Primary Hash Map which persists data into DB.
* Creates Hash Map which persists data into DB.
* Map will use custom serializers for Keys and Values.
* Leave keySerializer null to use default serializer for keys
*
Expand All @@ -121,7 +121,7 @@ public interface DB {
<K, V> ConcurrentNavigableMap<K, V> getTreeMap(String name);

/**
* Creates or load existing Primary TreeMap which persists data into DB.
* Create TreeMap which persists data into DB.
*
* @param <K> Key type
* @param <V> Value type
Expand All @@ -131,7 +131,7 @@ public interface DB {
<K extends Comparable, V> NavigableMap<K, V> createTreeMap(String name);

/**
* Creates or load existing TreeMap which persists data into DB.
* Creates TreeMap which persists data into DB.
*
* @param <K> Key type
* @param <V> Value type
Expand Down

0 comments on commit 8af7860

Please sign in to comment.