Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Davies Liu committed Jun 29, 2015
1 parent 5e797bf commit 5ce39da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
*
* In order to support fast hashing and equality checks for UnsafeRows that contain objects
* when used as grouping key in BytesToBytesMap, we put the objects in an UniqueObjectPool to make
* sure all the keyhave the same index for same object, then we can hash/compare the objects by
* sure all the key have the same index for same object, then we can hash/compare the objects by
* hash/compare the index.
*
* For non-primitive types, the word of a field could be:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class UniqueObjectPool extends ObjectPool {
/**
* A hash map from objects to their indexes in the array.
*/
private HashMap<Object, Integer> objIndex;
private HashMap<Object, Integer> objIndex;

public UniqueObjectPool(int capacity) {
super(capacity);
Expand Down

0 comments on commit 5ce39da

Please sign in to comment.