From c07aa07ac90b6bd9ea3b4bb7934674cf775931b4 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Thu, 24 Jul 2014 13:52:30 -0400 Subject: [PATCH] Correct formatting of a line in ingest module develop guide --- docs/doxygen/modIngest.dox | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/doxygen/modIngest.dox b/docs/doxygen/modIngest.dox index 8aaea1f40b..5250f1157e 100644 --- a/docs/doxygen/modIngest.dox +++ b/docs/doxygen/modIngest.dox @@ -334,8 +334,7 @@ There are three big changes to make in your module: We recommend that you: --# Create a new factory class and move over the UI panels, configuration code, and standard methods (name, description, version, etc.). ---# You'll probably want the name in the ingest module code, so you should also store the name in a package-wide static member variable. +-# Create a new factory class and move over the UI panels, configuration code, and standard methods (name, description, version, etc.). You'll probably want the name in the ingest module code, so you should also store the name in a package-wide static member variable. -# Get the factory to compile and work. You can do basic testing by running Autopsy and verifying that you see your module and its panels. -# Change your old ingest module to implement the new interface and adjust it (see the name changes below). Then update the factory to create it. -# Review the ingest module code for thread safety (especially look for static member variables).