Skip to content

Commit c3af8fc

Browse files
committed
formatting
1 parent 108cef6 commit c3af8fc

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

FlashpointSecurePlayer/FlashpointProxy.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ public static void GetPreferences(out bool proxy, out int port) {
169169
// fail silently
170170
}
171171

172-
if (long.TryParse(proxyEnvironmentVariable, out preference) && preference != PREFERENCE_DEFAULT) {
172+
if (long.TryParse(proxyEnvironmentVariable, out preference)
173+
&& preference != PREFERENCE_DEFAULT) {
173174
proxy = preference != 0;
174175
} else {
175176
proxy = FP_PROXY_DEFAULT;
@@ -187,7 +188,8 @@ public static void GetPreferences(out bool proxy, out int port) {
187188
// fail silently
188189
}
189190

190-
if (long.TryParse(portEnvironmentVariable, out preference) && preference != PREFERENCE_DEFAULT) {
191+
if (long.TryParse(portEnvironmentVariable, out preference)
192+
&& preference != PREFERENCE_DEFAULT) {
191193
port = (int)preference;
192194
} else {
193195
port = FP_PROXY_PORT_DEFAULT;

0 commit comments

Comments
 (0)