File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 32
32
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
33
33
//通过使用 "*",如下所示:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "1.30.17.1 " ) ]
36
- [ assembly: AssemblyFileVersion ( "1.30.17.1 " ) ]
35
+ [ assembly: AssemblyVersion ( "1.30.17.2 " ) ]
36
+ [ assembly: AssemblyFileVersion ( "1.30.17.2 " ) ]
Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ public BasicTable(ExtendedDataInput @in)
39
39
}
40
40
41
41
BasicEntityFactory factory = new BasicEntityFactory ( ) ;
42
+ VectorDecompressor decompressor = null ;
43
+ SymbolBaseCollection collection = null ;
42
44
//read columns
43
45
for ( int i = 0 ; i < cols ; ++ i )
44
46
{
@@ -51,8 +53,6 @@ public BasicTable(ExtendedDataInput @in)
51
53
52
54
DATA_FORM df = ( DATA_FORM ) form ;
53
55
DATA_TYPE dt = ( DATA_TYPE ) type ;
54
- VectorDecompressor decompressor = null ;
55
- SymbolBaseCollection collection = null ;
56
56
if ( df != DATA_FORM . DF_VECTOR )
57
57
{
58
58
throw new IOException ( "Invalid form for column [" + names_ [ i ] + "] for table " + _tableName ) ;
You can’t perform that action at this time.
0 commit comments