@@ -612,10 +612,6 @@ instead of just its \"value\" entry."
612
612
(let* ((value (if v2
613
613
(nrepl-dict-get dict-or-value " value" )
614
614
dict-or-value))
615
- (fragments (when v2
616
- (nrepl-dict-get dict-or-value " doc-fragments" )))
617
- (block-tags (when v2
618
- (nrepl-dict-get dict-or-value " doc-block-tags-fragments" )))
619
615
(ns (cider-current-ns))
620
616
(font-size (when-let* ((b (get-buffer cider-inspector-buffer))
621
617
(variable 'text-scale-mode-amount )
@@ -633,9 +629,7 @@ instead of just its \"value\" entry."
633
629
(cider-inspector-render cider-inspector-buffer value
634
630
:font-size font-size
635
631
:truncate-lines-defined truncate-lines-defined
636
- :truncate-lines-p truncate-lines-p
637
- :fragments fragments
638
- :block-tags block-tags)
632
+ :truncate-lines-p truncate-lines-p)
639
633
(cider-popup-buffer-display cider-inspector-buffer cider-inspector-auto-select-buffer)
640
634
(when cider-inspector-fill-frame (delete-other-windows ))
641
635
(ignore-errors (cider-inspector-next-inspectable-object 1 ))
@@ -655,7 +649,7 @@ instead of just its \"value\" entry."
655
649
(when cider-inspector-page-location-stack
656
650
(goto-char (pop cider-inspector-page-location-stack)))))))
657
651
658
- (cl-defun cider-inspector-render (buffer str &key font-size truncate-lines-defined truncate-lines-p fragments block-tags )
652
+ (cl-defun cider-inspector-render (buffer str &key font-size truncate-lines-defined truncate-lines-p )
659
653
" Render STR in BUFFER."
660
654
(with-current-buffer buffer
661
655
(cider-inspector-mode)
@@ -665,23 +659,17 @@ instead of just its \"value\" entry."
665
659
(setq-local truncate-lines truncate-lines-p))
666
660
(let ((inhibit-read-only t ))
667
661
(condition-case nil
668
- (cider-inspector-render* (car (read-from-string str))
669
- fragments
670
- block-tags)
662
+ (cider-inspector-render* (car (read-from-string str)))
671
663
(error (insert " \n Inspector error for: " str))))
672
664
(goto-char (point-min ))))
673
665
674
666
(defvar cider-inspector-looking-at-java-p nil )
675
667
676
- (defun cider-inspector-render* (elements &optional fragments block-tags )
677
- " Render ELEMENTS, and FRAGMENTS, BLOCK-TAGS if present ."
668
+ (defun cider-inspector-render* (elements )
669
+ " Render ELEMENTS."
678
670
(setq cider-inspector-looking-at-java-p nil )
679
671
(dolist (el elements)
680
- (cider-inspector-render-el* el))
681
- (when fragments
682
- (insert " \n\n " )
683
- (insert (cider--render-docstring (list " doc-fragments" fragments
684
- " doc-block-tags-fragments" block-tags)))))
672
+ (cider-inspector-render-el* el)))
685
673
686
674
(defconst cider--inspector-java-headers
687
675
; ; NOTE "--- Static fields:" "--- Instance fields:" are for objects,
0 commit comments