aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/protobuf/ws-commons.proto
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-commons.proto')
-rw-r--r--sonar-ws/src/main/protobuf/ws-commons.proto8
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-commons.proto b/sonar-ws/src/main/protobuf/ws-commons.proto
index 6a0aa87bfe0..fee84a0680c 100644
--- a/sonar-ws/src/main/protobuf/ws-commons.proto
+++ b/sonar-ws/src/main/protobuf/ws-commons.proto
@@ -75,14 +75,14 @@ message User {
// Lines start at 1 and line offsets start at 0
message TextRange {
// Start line. Should never be absent
- optional int32 start_line = 1;
+ optional int32 startLine = 1;
// End line (inclusive). Absent means it is same as start line
- optional int32 end_line = 2;
+ optional int32 endLine = 2;
// If absent it means range starts at the first offset of start line
- optional int32 start_offset = 3;
+ optional int32 startOffset = 3;
// If absent it means range ends at the last offset of end line
- optional int32 end_offset = 4;
+ optional int32 endOffset = 4;
}