@@ -25,15 +25,6 @@ pub struct Report {
25
25
/// Only used for Inbox reports.
26
26
#[ serde( skip_serializing_if = "Option::is_none" ) ]
27
27
pub primary_email : Option < String > ,
28
- /// Member's public name. No update is needed if None. Clear if Some("").
29
- /// Only used for Inbox reports.
30
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
31
- pub public_name : Option < String > ,
32
- /// Member's public contact. No update is needed if None. Clear if Some("").
33
- /// Can contain any details, up to the member.
34
- /// Only used for Inbox reports.
35
- #[ serde( skip_serializing_if = "Option::is_none" ) ]
36
- pub public_contact : Option < String > ,
37
28
/// GitHub user name, if known
38
29
#[ serde( skip_serializing_if = "Option::is_none" ) ]
39
30
pub github_user_name : Option < String > ,
@@ -257,8 +248,6 @@ impl Report {
257
248
// copy the dev identity if the other report is newer by its timestamp
258
249
if other_report. timestamp > merge_into_inner. timestamp {
259
250
merge_into_inner. primary_email = other_report. primary_email ;
260
- merge_into_inner. public_name = other_report. public_name ;
261
- merge_into_inner. public_contact = other_report. public_contact ;
262
251
}
263
252
}
264
253
@@ -510,8 +499,6 @@ impl Report {
510
499
last_contributor_commit_date_epoch : None ,
511
500
last_contributor_commit_sha1 : None ,
512
501
primary_email : None ,
513
- public_contact : None ,
514
- public_name : None ,
515
502
first_contributor_commit_sha1 : None ,
516
503
first_contributor_commit_date_iso : None ,
517
504
first_contributor_commit_date_epoch : None ,
0 commit comments