1. 11 1月, 2012 3 次提交
    • A
      Polishing · ab6a7e8e
      Arjen Poutsma 提交于
      ab6a7e8e
    • R
      5a2bd97c
    • C
      Polish "Support flash attrs..." and related classes · d7d1b495
      Chris Beams 提交于
       - Eliminate trailing whitespace
      
       - Update long method signatures to follow framework whitespace
         conventions
      
         Based on the following search,
      
             $ git grep -A3 '^.public .* .*([^\{;]*$' */src/main
      
         the strong convention throughout the framework when dealing with
         methods having long signatures (i.e. many parameters) is to break
         immediately after the opening paren, indent two tabs deeper and break
         lines around 90 characters as necessary. Such signatures should also
         be followed by a newline after the opening curly brace to break
         things up visually.
      
         The files edited in this commit had a particularly different style of
         intenting arguments to align with each other vertically, but the
         alignment only worked if one's tabstop is set at four spaces.
         When viewed at a different tabstop value, the effect is is jarring,
         both in that it is misaligned and significantly different from most
         of the framework. The convention described above reads well at any
         tabstop value.
      d7d1b495
  2. 10 1月, 2012 3 次提交
  3. 07 1月, 2012 2 次提交
  4. 06 1月, 2012 4 次提交
  5. 23 12月, 2011 1 次提交
  6. 22 12月, 2011 25 次提交
  7. 21 12月, 2011 2 次提交
    • C
      Convert CRLF (dos) to LF (unix) · 88913f2b
      Chris Beams 提交于
      Prior to this change, roughly 5% (~300 out of 6000+) of files under the
      source tree had CRLF line endings as opposed to the majority which have
      LF endings.
      
      This change normalizes these files to LF for consistency going forward.
      
      Command used:
      
      $ git ls-files | xargs file | grep CRLF | cut -d":" -f1 | xargs dos2unix
      
      Issue: SPR-5608
      88913f2b
    • R
      Add missing (empty) source folders · e1b64536
      Rossen Stoyanchev 提交于
      e1b64536