Remove commented out code

This commit is contained in:
Ed Minnix
2023-03-08 19:21:58 -05:00
parent da43a61506
commit ae0b4970ac

View File

@@ -28,21 +28,6 @@ private module ApkConf implements DataFlow::ConfigSig {
module ApkConfiguration = DataFlow::Make<ApkConf>; module ApkConfiguration = DataFlow::Make<ApkConf>;
// class ApkConfiguration extends DataFlow::Configuration {
// ApkConfiguration() { this = "ApkConfiguration" }
// override predicate isSource(DataFlow::Node node) { node instanceof ExternalApkSource }
// override predicate isSink(DataFlow::Node node) {
// exists(MethodAccess ma |
// ma.getMethod() instanceof SetDataMethod and
// ma.getArgument(0) = node.asExpr() and
// (
// any(PackageArchiveMimeTypeConfiguration c).hasFlowToExpr(ma.getQualifier())
// or
// any(InstallPackageActionConfiguration c).hasFlowToExpr(ma.getQualifier())
// )
// )
// }
// }
/** /**
* A dataflow configuration tracking the flow from the `android.content.Intent.ACTION_INSTALL_PACKAGE` * A dataflow configuration tracking the flow from the `android.content.Intent.ACTION_INSTALL_PACKAGE`
* constant to either the constructor of an intent or the `setAction` method of an intent. * constant to either the constructor of an intent or the `setAction` method of an intent.