Performs config revisions on the first call. This is done to avoid revising when we don't need to.
| 966 | // revising when we don't need to. |
| 967 | // |
| 968 | void Settings::Revise() const |
| 969 | { |
| 970 | if (!m_Revised) { |
| 971 | m_Revised = true; |
| 972 | Reviser::ApplyRevisions(m_UserKey, &m_UserFormsKey, m_PipelinePluginsKey, *this); |
| 973 | } |
| 974 | } |
| 975 | |
| 976 | // |
| 977 | // Returns the info to write in the value for a registered |
nothing calls this directly
no outgoing calls
no test coverage detected