Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.ProtobufCS/0.9.1/ProtobufCS/src/ProtocolBuffers/Collections/Dictionaries.cs

    r3857 r4068  
    3030// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    3131// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    32 using System;
    3332using System.Collections;
    3433using System.Collections.Generic;
     
    5049        return false;
    5150      }
    52       foreach (KeyValuePair<TKey,TValue> leftEntry in left)
    53       {
     51      foreach (KeyValuePair<TKey, TValue> leftEntry in left) {
    5452        TValue rightValue;
    5553        if (!right.TryGetValue(leftEntry.Key, out rightValue)) {
     
    7270    }
    7371
    74     public static IDictionary<TKey, TValue> AsReadOnly<TKey, TValue> (IDictionary<TKey, TValue> dictionary) {
     72    public static IDictionary<TKey, TValue> AsReadOnly<TKey, TValue>(IDictionary<TKey, TValue> dictionary) {
    7573      return dictionary.IsReadOnly ? dictionary : new ReadOnlyDictionary<TKey, TValue>(dictionary);
    7674    }
Note: See TracChangeset for help on using the changeset viewer.