Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit 2a89523

Browse files
committed
Now using WebKit
1 parent 3e3f0d4 commit 2a89523

File tree

12 files changed

+255
-547
lines changed

12 files changed

+255
-547
lines changed

CodeHub.Core/CodeHub.Core.iOS.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@
180180
<Compile Include="ViewModels\Repositories\RepositoriesForkedViewModel.cs" />
181181
<Compile Include="Utils\GitHubAvatar.cs" />
182182
<Compile Include="Utils\GitHubExtensions.cs" />
183+
<Compile Include="Utils\WeakReferenceExtensions.cs" />
183184
</ItemGroup>
184185
<ItemGroup />
185186
<ItemGroup>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
public static class WeakReferenceExtensions
4+
{
5+
public static T Get<T>(this WeakReference<T> @this) where T : class
6+
{
7+
T t;
8+
@this.TryGetTarget(out t);
9+
return t;
10+
}
11+
}
12+

CodeHub.iOS/CodeHub.iOS.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,7 @@
332332
<Compile Include="Utilities\ViewControllerExtensions.cs" />
333333
<Compile Include="Utilities\Controls.cs" />
334334
<Compile Include="Utilities\Graphics.cs" />
335-
<Compile Include="Utilities\ImageLoader.cs" />
336335
<Compile Include="Utilities\LocalizationExtensions.cs" />
337-
<Compile Include="Utilities\LRUCache.cs" />
338336
<Compile Include="Utilities\StringExtensions.cs" />
339337
<Compile Include="Utilities\EasyLayout.cs" />
340338
<Compile Include="Octicons.cs" />
@@ -371,6 +369,7 @@
371369
<InterfaceDefinition Include="TableViewCells\CommitCellView.xib" />
372370
<Compile Include="TableViewCells\CommitCellView.designer.cs" />
373371
<Compile Include="Elements\CommitElement.cs" />
372+
<Compile Include="ViewControllers\LiteComposer.cs" />
374373
</ItemGroup>
375374
<ItemGroup>
376375
<Reference Include="System" />

CodeHub.iOS/Utilities/ImageLoader.cs

Lines changed: 0 additions & 352 deletions
This file was deleted.

0 commit comments

Comments
 (0)