Skip to content

Commit 5e466b9

Browse files
Keep origina method name
1 parent 6b5abf6 commit 5e466b9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dotnet/src/dotnetframework/GxClasses/Domain/GXFileIO.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1434,8 +1434,8 @@ public void AppendAllLines(GxSimpleCollection<string> value, String encoding)
14341434

14351435
public void Open(string encoding)
14361436
{
1437-
OpenWriteWithRetry(encoding);
1438-
OpenReadWithRetry(encoding);
1437+
OpenWrite(encoding);
1438+
OpenRead(encoding);
14391439
}
14401440

14411441
private FileStream _fileStreamWriter;
@@ -1444,7 +1444,7 @@ public void Open(string encoding)
14441444
private FileStream _fileStreamReader;
14451445
private StreamReader _fileReader;
14461446

1447-
public void OpenWriteWithRetry(string encoding)
1447+
public void OpenWrite(string encoding)
14481448
{
14491449
_lastError = 0;
14501450
_lastErrorDescription = "";
@@ -1484,7 +1484,7 @@ public void OpenWriteWithRetry(string encoding)
14841484
}
14851485
}
14861486

1487-
public void OpenReadWithRetry(string encoding)
1487+
public void OpenRead(string encoding)
14881488
{
14891489
_lastError = 0;
14901490
_lastErrorDescription = "";

0 commit comments

Comments
 (0)