mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GT-2702: Fixing spelling.
This commit is contained in:
parent
097cf2e758
commit
6c8ee22c07
9 changed files with 17 additions and 17 deletions
|
@ -15,7 +15,7 @@
|
|||
*/
|
||||
package ghidra.graph.viewer.edge;
|
||||
|
||||
public interface PathHighlightListner {
|
||||
public interface PathHighlightListener {
|
||||
|
||||
/**
|
||||
* Called when the a path is highlighted.
|
|
@ -99,7 +99,7 @@ public class VisualGraphPathHighlighter<V extends VisualVertex, E extends Visual
|
|||
private CompletableFuture<ChkDominanceAlgorithm<V, E>> postDominanceFuture;
|
||||
private CompletableFuture<Circuits> circuitFuture;
|
||||
|
||||
private PathHighlightListner listener = isHover -> {
|
||||
private PathHighlightListener listener = isHover -> {
|
||||
// stub
|
||||
};
|
||||
|
||||
|
@ -108,7 +108,7 @@ public class VisualGraphPathHighlighter<V extends VisualVertex, E extends Visual
|
|||
private SwingUpdateManager focusedVertexUpdater =
|
||||
new SwingUpdateManager(() -> doUpdateFocusedVertex());
|
||||
|
||||
public VisualGraphPathHighlighter(VisualGraph<V, E> graph, PathHighlightListner listener) {
|
||||
public VisualGraphPathHighlighter(VisualGraph<V, E> graph, PathHighlightListener listener) {
|
||||
this.graph = graph;
|
||||
if (listener != null) {
|
||||
this.listener = listener;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue