Skip to content

Commit ce2adb2

Browse files
author
Stewart Miles
committed
Removed obsolete IOSResolver.CocoapodsInstallEnabled from settings.
Change-Id: I53737ee73381148cf4d78d4b5e8f452caa95e144
1 parent c48c995 commit ce2adb2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

source/IOSResolver/src/IOSResolverSettingsDialog.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public class IOSResolverSettingsDialog : EditorWindow
3030
/// Loads / saves settings for this dialog.
3131
/// </summary>
3232
private class Settings {
33-
internal bool cocoapodsInstallEnabled;
3433
internal bool podfileGenerationEnabled;
3534
internal bool podToolExecutionViaShellEnabled;
3635
internal bool autoPodToolInstallInEditorEnabled;
@@ -42,7 +41,6 @@ private class Settings {
4241
/// Load settings into the dialog.
4342
/// </summary>
4443
internal Settings() {
45-
cocoapodsInstallEnabled = IOSResolver.CocoapodsInstallEnabled;
4644
podfileGenerationEnabled = IOSResolver.PodfileGenerationEnabled;
4745
podToolExecutionViaShellEnabled = IOSResolver.PodToolExecutionViaShellEnabled;
4846
autoPodToolInstallInEditorEnabled = IOSResolver.AutoPodToolInstallInEditorEnabled;
@@ -57,7 +55,6 @@ internal Settings() {
5755
/// </summary>
5856
internal void Save() {
5957
IOSResolver.PodfileGenerationEnabled = podfileGenerationEnabled;
60-
IOSResolver.CocoapodsInstallEnabled = cocoapodsInstallEnabled;
6158
IOSResolver.PodToolExecutionViaShellEnabled = podToolExecutionViaShellEnabled;
6259
IOSResolver.AutoPodToolInstallInEditorEnabled = autoPodToolInstallInEditorEnabled;
6360
IOSResolver.VerboseLoggingEnabled = verboseLoggingEnabled;

0 commit comments

Comments
 (0)