Skip to content

Commit 9d6a0fc

Browse files
committed
seo #15
1 parent 3f6dbae commit 9d6a0fc

File tree

8 files changed

+1
-19
lines changed

8 files changed

+1
-19
lines changed

MyDevTools/Components/Pages/BranchNameFormatter.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
{
6565
try
6666
{
67-
// Use the Clipboard API to copy the text to the clipboard
6867
await ClipboardService.CopyToClipboardAsync(formattedString);
6968
copyConfirmationMessage = "Text copied to clipboard!";
7069
}

MyDevTools/Components/Pages/ContainerIds.razor

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,7 @@
113113
{
114114
try
115115
{
116-
// Use the Clipboard API to copy the text to the clipboard
117116
await ClipboardService.CopyToClipboardAsync(generatedCodes);
118-
119-
// Set the confirmation message
120117
copyConfirmationMessage = "Text copied to clipboard!";
121118
}
122119
catch (Exception ex)

MyDevTools/Components/Pages/CronGenerator.razor

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,7 @@
110110
{
111111
try
112112
{
113-
// Use the Clipboard API to copy the text to the clipboard
114113
await ClipboardService.CopyToClipboardAsync(cronExpression);
115-
116-
// Set the confirmation message
117114
copyConfirmationMessage = "Cron expression copied to clipboard!";
118115
}
119116
catch (Exception ex)

MyDevTools/Components/Pages/HashGenerator.razor

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
@code {
4444
private enum HashAlgorithms
4545
{
46-
// Omitted MD5 based on your criteria
4746
SHA256,
4847
SHA384,
4948
SHA512

MyDevTools/Components/Pages/JwtDecoder.razor

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,11 @@
6262
{
6363
try
6464
{
65-
// Use the Clipboard API to copy the text to the clipboard
6665
await ClipboardService.CopyToClipboardAsync(decodedJson);
6766
}
6867
catch (Exception ex)
6968
{
70-
// Handle the error
69+
Console.WriteLine(ex.Message);
7170
}
7271
}
7372
}

MyDevTools/Components/Pages/RandomNumberGenerator.razor

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,7 @@
7171
{
7272
try
7373
{
74-
// Use the Clipboard API to copy the text to the clipboard
7574
await ClipboardService.CopyToClipboardAsync(generatedNumbersText);
76-
77-
// Set the confirmation message
7875
copyConfirmationMessage = "Text copied to clipboard!";
7976
}
8077
catch (Exception ex)

MyDevTools/Components/Pages/SqlFormatter.razor

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,7 @@
6262
{
6363
try
6464
{
65-
// Use the Clipboard API to copy the text to the clipboard
6665
await ClipboardService.CopyToClipboardAsync(formattedQuery);
67-
68-
// Set the confirmation message
6966
copyConfirmationMessage = "Query copied to clipboard!";
7067
}
7168
catch (Exception ex)

MyDevTools/Components/Pages/UrlEncoderDecoder.razor

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,7 @@
7272
{
7373
try
7474
{
75-
// Use the Clipboard API to copy the text to the clipboard
7675
await ClipboardService.CopyToClipboardAsync(processedUrl);
77-
78-
// Set the confirmation message
7976
copyConfirmationMessage = "Text copied to clipboard!";
8077
}
8178
catch (Exception ex)

0 commit comments

Comments
 (0)