Don't break the initial elements of chained dereferences if they are very small

E.g. we prefer:

x.foo
    .bar()

To:

x
    .foo
    .bar();
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=104989655
5 files changed
tree: 0a57b679c0e053069c1451db385ebdecf133ac6a
  1. core/
  2. idea_plugin/
  3. scripts/
  4. .gitignore
  5. .travis.yml
  6. CONTRIBUTING.md
  7. LICENSE
  8. pom.xml
  9. README.md
README.md

google-java-format

Build Status

google-java-format is a program that reformats Java source code to comply with Google Java Style.