internal InlineMethodDetector(IInMethodInlineDetector inMethodDetector) { this.logger = NLoggerUtil.GetNLogger(typeof (InlineMethodDetector)); this.refactorings = new List<IManualRefactoring>(); this.inMethodDetector = inMethodDetector; }
internal InClassInlineMethodDetector(SyntaxTree treeBefore, SyntaxTree treeAfter, IInMethodInlineDetector inMethodDetector) { logger = NLoggerUtil.GetNLogger(typeof (InClassInlineMethodDetector)); refactorings = new List<IManualRefactoring>(); this.treeBefore = treeBefore; this.treeAfter = treeAfter; this.inMethodDetector = inMethodDetector; }