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.LibSVM/1.6.3/LibSVM-1.6.3/SVMExtensions.cs

    r2645 r4068  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 
    6 namespace SVM
    7 {
    8     internal static class SVMExtensions
    9     {
    10         public static void SwapIndex<T>(this T[] list, int i, int j)
    11         {
    12             T tmp = list[i];
    13             list[i] = list[j];
    14             list[j] = tmp;
    15         }
     1
     2namespace SVM {
     3  internal static class SVMExtensions {
     4    public static void SwapIndex<T>(this T[] list, int i, int j) {
     5      T tmp = list[i];
     6      list[i] = list[j];
     7      list[j] = tmp;
    168    }
     9  }
    1710}
Note: See TracChangeset for help on using the changeset viewer.