InlineConversationView last = blip.getConversationBefore(null);
return last != null ? getPrevPre(blip, last) : getPrevPost(blip, (InlineConversationView) null);
}
private BlipView getPrevPre(AnchorView parent, InlineThreadView thread) {
BlipView last = skip(thread) ? null : thread.getBlipBefore(null);
return last != null ? getPrevPre(thread, last) : getPrevPost(parent, thread);
}