-
Notifications
You must be signed in to change notification settings - Fork 311
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
VariantContext converter refactor #175
VariantContext converter refactor #175
Conversation
All automated tests passed. |
} | ||
private def attrAsString(attr: Object):Object = attr match { | ||
case a: String => a | ||
case a: java.util.List[String] => a(0) |
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 had a question RE: this line in #175.
This should merge before #173, correct? |
From the comments in the other one, I fixed braces and removed the array to string conversion |
Excellent! If you can squash this down, I think it is ready to merge. |
All automated tests passed. |
VariantContext converter refactor
Merged! Thanks @arahuja! |
This PR doesn't add any new functionality but just some cleanup/refactor on VariantContextConverter. This is a precursor of PR #173, but I pulled it out separately.