This is an archive of the discontinued LLVM Phabricator instance.

clang-format: [Java] support Java modifiers
ClosedPublic

Authored by het on Nov 20 2014, 3:07 PM.

Details

Reviewers
djasper
Summary

Before

public final<X> Foo foo() {
}

public abstract<X> Foo foo();

After

public final <X> Foo foo() {
}

public abstract <X> Foo foo();

Diff Detail

Event Timeline

het updated this revision to Diff 16454.Nov 20 2014, 3:07 PM
het retitled this revision from to clang-format: [Java] support Java modifiers.
het updated this object.
het edited the test plan for this revision. (Show Details)
het added a reviewer: djasper.
het set the repository for this revision to rL LLVM.
het added a subscriber: Unknown Object (MLST).
djasper accepted this revision.Nov 21 2014, 4:19 AM
djasper edited edge metadata.

Looks good. Submitted as r222527.

This revision is now accepted and ready to land.Nov 21 2014, 4:19 AM
djasper closed this revision.Nov 21 2014, 4:19 AM