2.7/2.8 patch?

I've tested the proposed null hyperLinkStyleId patch discussed in the below post. Seems to work fine. Patch file attached, if you find it useful.
http://www.docx4java.org/forums/data-binding-java-f16/2-7-1-questions-t898.html
http://www.docx4java.org/forums/data-binding-java-f16/2-7-1-questions-t898.html
- Code: Select all
Index: BindingHandler.java
===================================================================
--- BindingHandler.java (revision 1700)
+++ BindingHandler.java (working copy)
@@ -328,7 +328,7 @@
int pos = text.indexOf("http://");
- if (pos==-1) {
+ if (pos==-1 || hyperlinkStyleId == null) {
addRunToDocFrag(sourcePart, docfrag, text, rPr);
return;
}