Skip to content

Commit 73f7643

Browse files
committed
Limit line length correctly
Signed-off-by: Johan Fitié <jfitie@gmail.com>
1 parent 4be0a9c commit 73f7643

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DBMDataRef/DBMDataRef.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ Namespace Vitens.DynamicBandwidthMonitor
290290

291291
If annotation IsNot Nothing Then ' Value
292292

293-
While _annotations.Count >= MaxAnnotationsSize ' Limit dictionary size by removing oldest
294-
_annotations.Remove(_annotations.Keys.First())
293+
While _annotations.Count >= MaxAnnotationsSize ' Limit size
294+
_annotations.Remove(_annotations.Keys.First()) ' Remove oldest
295295
End While
296296

297297
DBM.Logger.LogDebug(

0 commit comments

Comments
 (0)