Skip to content

Commit

Permalink
Merge pull request #3907 from valadas/fix-rm-build
Browse files Browse the repository at this point in the history
Fixes 2 wrong merged conflicts resolutions
  • Loading branch information
valadas authored Jul 13, 2020
2 parents 654d7b9 + 702942e commit 20193d7
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 44 deletions.
70 changes: 35 additions & 35 deletions DNN Platform/Library/Services/FileSystem/FileManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,41 @@

namespace DotNetNuke.Services.FileSystem
{
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using DotNetNuke.Common;
using DotNetNuke.Common.Internal;
using DotNetNuke.Common.Lists;
using DotNetNuke.Common.Utilities;
using DotNetNuke.ComponentModel;
using DotNetNuke.Data;
using DotNetNuke.Entities;
using DotNetNuke.Entities.Content;
using DotNetNuke.Entities.Content.Common;
using DotNetNuke.Entities.Content.Taxonomy;
using DotNetNuke.Entities.Content.Workflow;
using DotNetNuke.Entities.Content.Workflow.Entities;
using DotNetNuke.Entities.Controllers;
using DotNetNuke.Entities.Host;
using DotNetNuke.Entities.Portals;
using DotNetNuke.Entities.Users;
using DotNetNuke.Instrumentation;
using DotNetNuke.Security.Permissions;
using DotNetNuke.Services.FileSystem.EventArgs;
using DotNetNuke.Services.FileSystem.Internal;
using DotNetNuke.Services.Log.EventLog;
using ICSharpCode.SharpZipLib.Zip;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using DotNetNuke.Common;
using DotNetNuke.Common.Internal;
using DotNetNuke.Common.Lists;
using DotNetNuke.Common.Utilities;
using DotNetNuke.ComponentModel;
using DotNetNuke.Data;
using DotNetNuke.Entities;
using DotNetNuke.Entities.Content;
using DotNetNuke.Entities.Content.Common;
using DotNetNuke.Entities.Content.Taxonomy;
using DotNetNuke.Entities.Content.Workflow;
using DotNetNuke.Entities.Content.Workflow.Entities;
using DotNetNuke.Entities.Controllers;
using DotNetNuke.Entities.Host;
using DotNetNuke.Entities.Portals;
using DotNetNuke.Entities.Users;
using DotNetNuke.Instrumentation;
using DotNetNuke.Security.Permissions;
using DotNetNuke.Services.FileSystem.EventArgs;
using DotNetNuke.Services.FileSystem.Internal;
using DotNetNuke.Services.Log.EventLog;
using ICSharpCode.SharpZipLib.Zip;

using Localization = DotNetNuke.Services.Localization.Localization;

/// <summary>
/// Exposes methods to manage files.
Expand Down Expand Up @@ -2042,6 +2044,4 @@ private string UpdateWhileApproving(IFolderInfo folder, int createdByUserID, IFi
"File locked. The file cannot be updated because it has a running workflow"));
}
}

using Localization = DotNetNuke.Services.Localization.Localization;
}
17 changes: 8 additions & 9 deletions DNN Platform/Library/Services/FileSystem/IFileManager.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
//
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
using DotNetNuke.Common.Utilities;
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information


namespace DotNetNuke.Services.FileSystem
{
using System;
using System;
using System.Collections.Generic;
using System.IO;

using DotNetNuke.Common.Utilities;

/// <summary>
/// Do not implement. This interface is meant for reference and unit test purposes only.
/// There is no guarantee that this interface will not change.
Expand Down Expand Up @@ -282,6 +283,4 @@ public interface IFileManager
/// </summary>
FileExtensionWhitelist WhiteList { get; }
}
using System.Collections.Generic;
using System.IO;
}

0 comments on commit 20193d7

Please sign in to comment.