You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/AdditionalPatterns/NullObject/NullObjectLibrary/SmartphoneApplicationExample/SmartphoneApplicationExecutor.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ public static void Execute()
18
18
gmail.Open();
19
19
gmail.Close();
20
20
21
-
// Null exception will not be thrown if application is not found
22
-
// by specified process ID. We return default (NULL) object.
21
+
// Null exception won't be thrown if an application with the specified process ID can't be found.
22
+
// In that case, default (NULL) object will be returned.
Copy file name to clipboardExpand all lines: src/BehavioralPatterns/ChainOfResponsibility/ChainOfResponsibilityLibrary/LoggingExample/LoggingExecutor.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ public static void Execute()
13
13
14
14
LoggerloggerChain=InitializeLoggerChain();
15
15
16
-
varinfoMessage="This is an information.";
17
-
vardebugMessage="This is an debug level information.";
18
-
varerrorMessage="This is an error information.";
16
+
varinfoMessage="This is information.";
17
+
vardebugMessage="This is debug level information.";
0 commit comments