Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/Mono.AndroidTools/Adb/AdbSyncNotification.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable enable
//
// AdbSyncNotification.cs
//
Expand Down Expand Up @@ -33,7 +34,7 @@ namespace Mono.AndroidTools.Adb
/// </summary>
public class AdbSyncNotification
{
public AdbSyncNotification (AdbSyncKind kind, string remotePath, string localPath, long size)
public AdbSyncNotification (AdbSyncKind kind, string remotePath, string? localPath, long size)
{
this.Kind = kind;
this.RemotePath = remotePath;
Expand All @@ -43,7 +44,7 @@ public AdbSyncNotification (AdbSyncKind kind, string remotePath, string localPat

public AdbSyncKind Kind { get; private set; }
public string RemotePath { get; private set; }
public string LocalPath { get; private set; }
public string? LocalPath { get; private set; }
public long Size { get; private set; }

public string GetMessage ()
Expand Down
Loading