| 805 | BundlePrivate::~BundlePrivate() = default; |
| 806 | |
| 807 | void |
| 808 | BundlePrivate::CheckUninstalled() const |
| 809 | { |
| 810 | if (state == Bundle::STATE_UNINSTALLED) |
| 811 | { |
| 812 | throw std::logic_error("Bundle " + symbolicName + " (location=" + location + ") is in UNINSTALLED state"); |
| 813 | } |
| 814 | } |
| 815 | |
| 816 | void |
| 817 | BundlePrivate::RemoveBundleResources() |
no outgoing calls
no test coverage detected