Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unicode character uri bug #1143

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
rob's nit
  • Loading branch information
TylerLeonhardt committed Jan 8, 2020
commit 90d5e6a6e7c7aac0b01783323078949446eb489e
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ e is SecurityException ||
/// </summary>
/// <param name="filePath">The file path for which a buffer will be retrieved.</param>
/// <returns>A ScriptFile instance if there is a buffer for the path, null otherwise.</returns>
public ScriptFile GetFileBuffer(string filePath) => GetFileBuffer(filePath, null);
public ScriptFile GetFileBuffer(string filePath) => GetFileBuffer(filePath, initialBuffer: null);

/// <summary>
/// Gets a new ScriptFile instance which is identified by the given file
Expand All @@ -224,7 +224,7 @@ e is SecurityException ||
/// </summary>
/// <param name="fileUri">The file Uri for which a buffer will be retrieved.</param>
/// <returns>A ScriptFile instance if there is a buffer for the path, null otherwise.</returns>
public ScriptFile GetFileBuffer(Uri fileUri) => GetFileBuffer(fileUri, null);
public ScriptFile GetFileBuffer(Uri fileUri) => GetFileBuffer(fileUri, initialBuffer: null);

/// <summary>
/// Gets a new ScriptFile instance which is identified by the given file
Expand Down