Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes the return type of apis #9

Merged
merged 1 commit into from
Nov 18, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions paldb/src/main/java/com/linkedin/paldb/api/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public boolean getBoolean(String key) {
* @param defaultValue default value if key not found
* @return value or <code>defaultValue</code> if not found
*/
public long getShort(String key, short defaultValue) {
public short getShort(String key, short defaultValue) {
if (containsKey(key)) {
return Short.parseShort(get(key));
} else {
Expand All @@ -210,7 +210,7 @@ public long getShort(String key, short defaultValue) {
* @throws java.lang.IllegalArgumentException if the key is not found
* @return value
*/
public long getShort(String key) {
public short getShort(String key) {
if (containsKey(key)) {
return Short.parseShort(get(key));
} else {
Expand Down