use of com.intellij.openapi.fileEditor.TransferableFileEditorState in project intellij-community by JetBrains.
the class TransferableFileEditorStateSupport method processContextHints.
public void processContextHints(@NotNull DiffRequest request, @NotNull DiffContext context) {
if (!isEnabled())
return;
for (BinaryEditorHolder holder : myHolders) {
FileEditor editor = holder.getEditor();
TransferableFileEditorState state = getEditorState(holder.getEditor());
if (state != null) {
readContextData(context, editor, state);
}
}
}
Aggregations