public Set<String> getOutdatedFiles(final boolean tests) {
      if (tests) {
        return myTest.outputEmpty() ? getTests() : getOutdatedTests();
      }

      return mySource.outputEmpty() ? getSources() : getOutdatedSources();
    }