File: StandardDataFlowRunner.java

package info (click to toggle)
intellij-community-idea 183.5153.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 178,352 kB
  • sloc: java: 2,023,773; xml: 78,706; ansic: 2,742; cpp: 1,688; javascript: 1,657; objc: 1,316; sh: 724; perl: 221; ruby: 102; python: 87; makefile: 7
file content (16 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.

package com.intellij.codeInspection.dataFlow;

import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.Nullable;

public class StandardDataFlowRunner extends DataFlowRunner {

  public StandardDataFlowRunner() {
    this(false, null);
  }
  public StandardDataFlowRunner(boolean unknownMembersAreNullable, @Nullable PsiElement context) {
    super(unknownMembersAreNullable, context);
  }
}