Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotnet/coreclr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: archive
Choose a base ref
...
head repository: k15tfu/coreclr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

There isn’t anything to compare.

dotnet:archive and k15tfu:master are entirely different commit histories.

Showing with 2 additions and 2 deletions.
  1. +2 −2 src/System.Private.CoreLib/shared/System/Security/PermissionSet.cs
Original file line number Diff line number Diff line change
@@ -24,8 +24,8 @@ public PermissionSet(PermissionSet permSet) { }
public void Assert() { }
public bool ContainsNonCodeAccessPermissions() { return false; }
[Obsolete]
public static byte[] ConvertPermissionSet(string inFormat, byte[] inData, string outFormat) { return null; }
public virtual PermissionSet Copy() { return default(PermissionSet); }
public static byte[] ConvertPermissionSet(string inFormat, byte[] inData, string outFormat) { throw new NotImplementedException(); }
public virtual PermissionSet Copy() { return new PermissionSet(this); }
public virtual void CopyTo(Array array, int index) { }
public void Demand() { }
[Obsolete]