소스 검색

Removed unsued defined namespaces

master
Sergii Zhevzhyk 9 년 전
부모
커밋
73e999d51f
10개의 변경된 파일5개의 추가작업 그리고 37개의 파일을 삭제
  1. 1
    5
      DocX/Bookmark.cs
  2. 1
    2
      DocX/Content.cs
  3. 0
    1
      DocX/ContentCollection.cs
  4. 1
    5
      DocX/DocumentTypes.cs
  5. 1
    12
      DocX/ExtensionsHeadings.cs
  6. 0
    1
      DocX/HelperFunctions.cs
  7. 0
    1
      DocX/Paragraph.cs
  8. 0
    1
      DocX/Section.cs
  9. 1
    5
      DocX/Table.cs
  10. 0
    4
      DocX/_Extensions.cs

+ 1
- 5
DocX/Bookmark.cs 파일 보기

@@ -1,8 +1,4 @@
using System;
using System.Linq;
using System.Collections.Generic;
namespace Novacode
namespace Novacode
{
public class Bookmark
{

+ 1
- 2
DocX/Content.cs 파일 보기

@@ -1,5 +1,4 @@
using System;
using System.Linq;
using System.Linq;
using System.Collections.Generic;
using System.Xml.Linq;


+ 0
- 1
DocX/ContentCollection.cs 파일 보기

@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Novacode
{

+ 1
- 5
DocX/DocumentTypes.cs 파일 보기

@@ -1,8 +1,4 @@
using System;
using System.Linq;
using System.Collections.Generic;
namespace Novacode
namespace Novacode
{
public enum DocumentTypes
{

+ 1
- 12
DocX/ExtensionsHeadings.cs 파일 보기

@@ -1,13 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Xml.Linq;
using Novacode;
namespace Novacode
{
@@ -32,10 +25,7 @@ namespace Novacode
{
return enumAttributes[0].Description;
}
else
{
return enumValue.ToString();
}
return enumValue.ToString();
}
/// <summary>
@@ -66,5 +56,4 @@ namespace Novacode
}
}
}

+ 0
- 1
DocX/HelperFunctions.cs 파일 보기

@@ -9,7 +9,6 @@ using System.Reflection;
using System.Security.Principal;
using System.Text;
using System.Xml.Linq;
using System.Xml;
namespace Novacode
{

+ 0
- 1
DocX/Paragraph.cs 파일 보기

@@ -1,5 +1,4 @@
using System;
using System.IO;
using System.Linq;
using System.Drawing;
using System.Xml.Linq;

+ 0
- 1
DocX/Section.cs 파일 보기

@@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.IO.Packaging;
using System.Xml.Linq;

namespace Novacode

+ 1
- 5
DocX/Table.cs 파일 보기

@@ -794,10 +794,7 @@ namespace Novacode
design = value;
if (design == TableDesign.None)
{
if (style != null)
style.Remove();
}
style.Remove();
if (design == TableDesign.Custom)
{
@@ -815,7 +812,6 @@ namespace Novacode
}
else
{
switch (design)
{
case TableDesign.TableNormal:

+ 0
- 4
DocX/_Extensions.cs 파일 보기

@@ -1,10 +1,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Drawing;
using System.ComponentModel;
using System.IO;
using System.Reflection;
using System.Text;
using System.Xml.Linq;
namespace Novacode

Loading…
취소
저장