Borislav Iordanov

Results 31 comments of Borislav Iordanov

Ok, I got pass that. So feel free to close this. However, the debugging is not stopping on breakpoints. I downgraded to the version of Chrome you recommend. I couldn't...

What would that mean? Date is not a native JSON type, so how would mJson support it?

Hmm, I think that's mainly I don't even JDK 1.6 so I didn't bother compiling with it. Do you need the maven dependency to work? In that case I'd have...

OK, I will take a look. It should be easy to backport. It was my intention to keep 1.6 compatibility....

Hi @ayyagari , So I modified the maven compiler plugin configuration like this: org.apache.maven.plugins maven-compiler-plugin 2.0.2 1.6 1.6 and the produced jar file was tested and worked file with a...

That's interesting and I'd do something about it. You are right, I wouldn't want any dependencies on the project :)

This should be a separate utility in the new mjson-ext package. This way, the implementation doesn't have the "lightness" constraint and can include all sorts of options for indentation, aligning...

Thanks :) I think it's probably better to use JSON Pointer syntax for this sort of thing. There's already a private method that resolve a JSON pointer string. One reason...

Right, except that / is a valid JSON string, and therefore object key, character so there is ambiguity with names that start with /. So it has to be another...

I'm talking more about defining a new interface, some along the lines of: interface ExpressionEvaluator { Json eval(String expression, Json object) } with a default implementation that could perhaps accept...