Skip to content

Commit

Permalink
Redundant try
Browse files Browse the repository at this point in the history
  • Loading branch information
yury committed Sep 7, 2023
1 parent e89a8ee commit 0ef525f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BlinkCode/CodeFileSystemService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public class CodeFileSystemService: CodeSocketDelegate {
switch request.op {
case .getRoot:
let msg: GetRootRequest = try decode(encodedData)
return try getRoot(token: msg.token, version: msg.version)
return getRoot(token: msg.token, version: msg.version)
case .stat:
let msg: StatFileSystemRequest = try decode(encodedData)
return try fileSystem(for: msg.uri).stat()
Expand Down

0 comments on commit 0ef525f

Please sign in to comment.