Skip to content

Commit

Permalink
Make ValueDescriptorImpl#getRenderer method final.
Browse files Browse the repository at this point in the history
(cherry picked from commit e8e677e68bb024f4da5b38e81572c306f7747e6d)

IJ-MR-6998

GitOrigin-RevId: ada70393fef1b63a5fc041db54e1d9cb452350fc
  • Loading branch information
Nikita Nazarov authored and intellij-monorepo-bot committed Mar 15, 2021
1 parent 45c1b19 commit ed3d86b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ public CompletableFuture<NodeRenderer> getRenderer(DebugProcessImpl debugProcess
.thenCompose(type -> getRenderer(type, debugProcess));
}

protected CompletableFuture<NodeRenderer> getRenderer(Type type, DebugProcessImpl debugProcess) {
protected final CompletableFuture<NodeRenderer> getRenderer(Type type, DebugProcessImpl debugProcess) {
DebuggerManagerThreadImpl.assertIsManagerThread();
CompletableFuture<Boolean> customCheck = CompletableFuture.completedFuture(false);
if (type != null && myRenderer != null) {
Expand Down

0 comments on commit ed3d86b

Please sign in to comment.