From 1515df8e71412787470b27d04ed9b2944fca0fdc Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Wed, 10 Feb 2021 22:02:50 +0000 Subject: Misc typo changes, const changes, code cleanup, and example updates --- rust/examples/flowgraph/src/lib.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'rust/examples/flowgraph/src') diff --git a/rust/examples/flowgraph/src/lib.rs b/rust/examples/flowgraph/src/lib.rs index e0c47d9f..799b0470 100644 --- a/rust/examples/flowgraph/src/lib.rs +++ b/rust/examples/flowgraph/src/lib.rs @@ -1,10 +1,8 @@ -use binaryninja::binaryview::{BinaryView, BinaryViewExt}; -use binaryninja::command::register; -use binaryninja::disassembly::{ - DisassemblyTextLine, InstructionTextToken, InstructionTextTokenType, -}; -use binaryninja::flowgraph::{ - BranchType, EdgePenStyle, EdgeStyle, FlowGraph, FlowGraphNode, ThemeColor, +use binaryninja::{ + binaryview::{BinaryView, BinaryViewExt}, + command::register, + disassembly::{DisassemblyTextLine, InstructionTextToken, InstructionTextTokenType}, + flowgraph::{BranchType, EdgePenStyle, EdgeStyle, FlowGraph, FlowGraphNode, ThemeColor}, }; fn test_graph(view: &BinaryView) { -- cgit v1.3.1