Skip to content

Commit 3815391

Browse files
Fix camel case on some namespaces.
1 parent d9098e6 commit 3815391

19 files changed

+15
-31
lines changed

dotnet/src/dotnetframework/GxOffice/ExcelFactory.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.IO;
22
using GeneXus.Application;
3-
using GeneXus.MSOffice.Excel.exception;
43
using GeneXus.MSOffice.Excel.Poi.Xssf;
54

65
namespace GeneXus.MSOffice.Excel

dotnet/src/dotnetframework/GxOffice/ExcelSpreadsheetGXWrapper.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.IO;
4-
using GeneXus.MSOffice.Excel.exception;
5-
using GeneXus.MSOffice.Excel.poi.xssf;
3+
using GeneXus.MSOffice.Excel.Poi.Xssf;
64
using log4net;
75

86
namespace GeneXus.MSOffice.Excel

dotnet/src/dotnetframework/GxOffice/IExcelCellRange.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System;
2-
using GeneXus.MSOffice.Excel.style;
2+
using GeneXus.MSOffice.Excel.Style;
33

44
namespace GeneXus.MSOffice.Excel
55
{

dotnet/src/dotnetframework/GxOffice/IExcelSpreadsheet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Collections.Generic;
2-
using GeneXus.MSOffice.Excel.poi.xssf;
2+
using GeneXus.MSOffice.Excel.Poi.Xssf;
33

44
namespace GeneXus.MSOffice.Excel
55
{

dotnet/src/dotnetframework/GxOffice/exception/ExcelDocumentNotSupported.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
3-
namespace GeneXus.MSOffice.Excel.exception
1+
namespace GeneXus.MSOffice.Excel
42
{
53
public class ExcelDocumentNotSupported : ExcelException
64
{

dotnet/src/dotnetframework/GxOffice/exception/ExcelException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace GeneXus.MSOffice.Excel.exception
3+
namespace GeneXus.MSOffice.Excel
44
{
55
public class ExcelException : Exception
66
{

dotnet/src/dotnetframework/GxOffice/exception/ExcelReadonlyException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GeneXus.MSOffice.Excel.exception
1+
namespace GeneXus.MSOffice.Excel
22
{
33
public class ExcelReadonlyException : ExcelException
44
{

dotnet/src/dotnetframework/GxOffice/exception/ExcelTemplateNotFoundException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GeneXus.MSOffice.Excel.exception
1+
namespace GeneXus.MSOffice.Excel
22
{
33
public class ExcelTemplateNotFoundException : ExcelException
44
{

dotnet/src/dotnetframework/GxOffice/poi/xssf/ExcelCells.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11

22
using System;
3-
using GeneXus.MSOffice.Excel.exception;
4-
using GeneXus.MSOffice.Excel.Poi.Xssf;
5-
using GeneXus.MSOffice.Excel.style;
63
using GeneXus.MSOffice.Excel.Style;
74
using GeneXus.Utils;
85
using log4net;
@@ -13,7 +10,7 @@
1310
using NPOI.XSSF.UserModel;
1411
using NPOI.XSSF.UserModel.Extensions;
1512

16-
namespace GeneXus.MSOffice.Excel.poi.xssf
13+
namespace GeneXus.MSOffice.Excel.Poi.Xssf
1714
{
1815
public class ExcelCells : IExcelCellRange
1916
{

dotnet/src/dotnetframework/GxOffice/poi/xssf/ExcelSpreadsheet.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
using System.Collections.Generic;
33
using System.IO;
44
using GeneXus.Application;
5-
using GeneXus.MSOffice.Excel.exception;
6-
using GeneXus.MSOffice.Excel.poi.xssf;
75
using log4net;
86
using NPOI.SS.UserModel;
97
using NPOI.Util;

0 commit comments

Comments
 (0)