Krzysztof Misztal

Results 3 comments of Krzysztof Misztal

My `LocalMessage` model: ```Kotlin @Entity interface LocalMessage : Persistable { @get:Key @get:Generated val id: Long val message: String var status: MessageStatus @get:ManyToOne val chat: LocalChat @get:Convert(DateTimeConverter::class) val createdAt: DateTime }...

I can see the problem now. I didn't go into your code a lot, but what with playing with generics? Something like: ```Java class RSSHandler { private T item; public...

In the end I've used [Simple XML](http://simple.sourceforge.net) - I had to support few extra tags, especially that I fetched data from both RSS1.0 and RSS2.0. But it was nothing fancy,...