~jonthysell/jauntypad/trunk

« back to all changes in this revision

Viewing changes to Src/JauntyPad.Core/TextBuffers/TextBufferExceptions.cs

  • Committer: Jon Thysell
  • Date: 2012-09-22 21:43:07 UTC
  • Revision ID: thysell@gmail.com-20120922214307-zn8q7j8i0dpz7vaa
Refactored Core and CoreTest to use "_" prefix for private member variables, removed "this." from member calls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
        public TextBufferException(TextBuffer textBuffer) : base()
36
36
        {
37
 
            this.TextBuffer = textBuffer;
 
37
            TextBuffer = textBuffer;
38
38
        }
39
39
    }
40
40
}