yahoo / squidb

SquiDB is a SQLite database library for Android and iOS
https://github.com/yahoo/squidb/wiki
Apache License 2.0
1.31k stars 132 forks source link

Fix doclint errors when using java8 #139

Closed smb510 closed 8 years ago

smb510 commented 8 years ago

When you compile Squidb from source using java 8, the javadoc task uses a really strict new doclint, which fails when non-HTML escaped greater than and less than characters are used (since it interprets them as HTML tags). This PR replaced them with proper HTML so that javadocs are generated properly with the strict doclint.

Weird, huh?

sbosley commented 8 years ago

Thanks @smb510! Note too that the SquiDB project itself works around this issue this way: https://github.com/yahoo/squidb/blob/master/build.gradle#L22

smb510 commented 8 years ago

@sbosley oh, that must not be in the tag I'm using... i did actually try that :)

Edit: oh right, I see the difference now. Our use case for this does not include that file. Right.

smb510 commented 8 years ago

there's some other places where this won't work. I'm going to close for now, and reopen a new PR in a short while