Files
guice/examples/src/example/xml/FromSim.java
T
lukesandSam Berlin d34d64e083 Run google-java-format on all Guice code.
configure a presubmit to ensure that it stays formatted.

Highlights include:
* simplified import order
* method annotations are now consistently defined on the preceding line
* javadoc reformatted to 100 chars column width

One test that contained line numbers in error messages had to be modified and
the formatter didn't like some of the more complicated preprocessor directives
(MOE and AOP).

To avoid formatting the copyright notices as javadoc i did a preprocessing step to rewrite the initial '/**' to '/*' using perl

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=132704632
2016-09-13 11:47:18 -04:00

9 lines
166 B
Java

package example.xml;
import static java.lang.annotation.RetentionPolicy.*;
import java.lang.annotation.Retention;
@Retention(RUNTIME)
public @interface FromSim {}