Skip to content

Commit

Permalink
making some essential types public.
Browse files Browse the repository at this point in the history
  • Loading branch information
perezd committed Jul 17, 2018
1 parent db7703d commit 8259318
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion java/protopoet/MessageField.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* in a single statement.
* See {@link MessageFieldSpec}, {@link OneofFieldSpec}, and {@link MapFieldSpec}.
*/
interface MessageField extends Emittable, Buildable<MessageField> {
public interface MessageField extends Emittable, Buildable<MessageField> {
/** Provides the defined name for a message field. */
String fieldName();
}
2 changes: 1 addition & 1 deletion java/protopoet/OptionType.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Valid types of options available in the Protocol Buffers language.
* Learn more: https://developers.google.com/protocol-buffers/docs/proto#customoptions
*/
enum OptionType {
public enum OptionType {
/** See {@link ProtoFile} for more info. */
FILE("FileOptions"),

Expand Down

0 comments on commit 8259318

Please sign in to comment.