Skip to content

Commit fd01632

Browse files
committed
Fix FPC warning about nested comments
1 parent a307c4e commit fd01632

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/pasls.lpr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ procedure Main(Rpc: TRpcPeer);
125125
on E: ERpcError do
126126
SendError(Rpc, Request.Id, E.Code, E.Message);
127127

128-
{ Catching all exceptions to prevent server from crashing,
128+
(*Catching all exceptions to prevent server from crashing,
129129
this seems the easiest solution to deal with various ways how
130130
Lazarus code tools can raise exception on invalid/in-progress code.
131131
@@ -137,7 +137,7 @@ procedure Main(Rpc: TRpcPeer);
137137
138138
This change captures it and reports:
139139
Exception ECodeToolError while dispatching request textDocument/documentSymbol: expected :, but PassParams found
140-
}
140+
*)
141141
on E: Exception do
142142
begin
143143
DebugLog('Exception %s while dispatching request %s: %s', [

0 commit comments

Comments
 (0)