File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ type Result struct {
13
13
14
14
type Detector struct {
15
15
recognizers []recognizer
16
- stripTag bool
16
+ stripTag bool
17
17
}
18
18
19
19
// List of charset recognizers
Original file line number Diff line number Diff line change @@ -7,22 +7,22 @@ type recognizer interface {
7
7
type recognizerOutput Result
8
8
9
9
type recognizerInput struct {
10
- raw []byte
11
- input []byte
12
- tagStripped bool
13
- byteStats []int
14
- hasC1Bytes bool
10
+ raw []byte
11
+ input []byte
12
+ tagStripped bool
13
+ byteStats []int
14
+ hasC1Bytes bool
15
15
}
16
16
17
17
func newRecognizerInput (raw []byte , stripTag bool ) * recognizerInput {
18
18
input , stripped := mayStripInput (raw , stripTag )
19
19
byteStats := computeByteStats (input )
20
20
return & recognizerInput {
21
- raw : raw ,
22
- input : input ,
23
- tagStripped : stripped ,
24
- byteStats : byteStats ,
25
- hasC1Bytes : computeHasC1Bytes (byteStats ),
21
+ raw : raw ,
22
+ input : input ,
23
+ tagStripped : stripped ,
24
+ byteStats : byteStats ,
25
+ hasC1Bytes : computeHasC1Bytes (byteStats ),
26
26
}
27
27
}
28
28
You can’t perform that action at this time.
0 commit comments