Skip to content

Commit 78bd410

Browse files
committed
Fix #72
1 parent 8562933 commit 78bd410

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

protobuf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ abstractions.
2727
<dependency>
2828
<groupId>com.squareup</groupId>
2929
<artifactId>protoparser</artifactId>
30-
<version>4.0.0</version>
30+
<version>4.0.3</version>
3131
</dependency>
3232

3333
<!-- Hmmh. Need databind for schema generation, convenience ProtobufMapper.

protobuf/src/test/java/com/fasterxml/jackson/dataformat/protobuf/SchemaParsingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ public class SchemaParsingTest extends ProtobufTestBase
2929

3030
final protected static String PROTOC_STRINGS_PACKED =
3131
"message Strings {\n"
32-
+" repeated string values = 2 [packed=true];\n"
32+
+" repeated string values = 2 [packed=true]; /* comment */\n"
3333
+"}\n"
3434
;
35-
35+
3636
public void testSimpleSearchRequest() throws Exception
3737
{
3838
// First: with implicit first type:

release-notes/VERSION

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Modules:
1111

1212
2.9.0 (not yet released)
1313

14+
2.8.9 (not yet released)
15+
16+
#72: (proto) parser fails with /* comment */
17+
1418
2.8.8 (05-Apr-2017)
1519

1620
#54 (protobuf): Some fields are left null

0 commit comments

Comments
 (0)