diff --git a/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java b/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java index 6775f6144725..4035d2ac126f 100644 --- a/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java +++ b/platform/vcs-impl/src/com/intellij/openapi/vcs/history/FileHistoryPanelImpl.java @@ -725,7 +725,7 @@ public class FileHistoryPanelImpl extends PanelWithActionsAndCloseButton impleme }; } - @Nullable + @NotNull @Override public Comparator getComparator() { return comparing(revision -> valueOf(revision)); @@ -823,7 +823,7 @@ public class FileHistoryPanelImpl extends PanelWithActionsAndCloseButton impleme return StringUtil.repeatSymbol('m', 14); } - @Nullable + @NotNull @Override public Comparator getComparator() { return comparing(revision -> valueOf(revision)); @@ -875,7 +875,7 @@ public class FileHistoryPanelImpl extends PanelWithActionsAndCloseButton impleme return myRenderer; } - @Nullable + @NotNull @Override public Comparator getComparator() { return comparing(revision -> valueOf(revision));