1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

Merge pull request #836 from rcordovano/develop

Correct formatting of a line in ingest module develop guide
This commit is contained in:
Richard Cordovano
2014-07-24 13:53:21 -04:00

View File

@@ -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).