-
Notifications
You must be signed in to change notification settings - Fork 33
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
jedis version up #14
base: master
Are you sure you want to change the base?
jedis version up #14
Conversation
morita-kuma
commented
Sep 28, 2015
- updated to 2.7.3 from 2.4.2
- replace a deplicated method
modified: src/main/scala/sedis.scala
This reverts commit ae21752.
Hi, can you squash the commits modifying the pom.xml please? Other than that, looks good to me. |
@moli9ma can you rebase this on the latest master please? |
@@ -58,8 +58,7 @@ trait Dress { | |||
} | |||
|
|||
def get(k: String): Option[String] = { | |||
val f = j.get(k) | |||
if (f == null) None else Some(f) | |||
Option(j.get(k)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is an unrelated fix, can you move it to another PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will send this as another PR!