File tree Expand file tree Collapse file tree 17 files changed +19
-35
lines changed
main/java/io/thekraken/grok/api
test/java/io/thekraken/grok/api Expand file tree Collapse file tree 17 files changed +19
-35
lines changed Original file line number Diff line number Diff line change 1
- package oi .thekraken .grok .api ;
1
+ package io .thekraken .grok .api ;
2
2
3
3
import java .text .DateFormat ;
4
4
import java .text .SimpleDateFormat ;
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*******************************************************************************/
16
- package oi .thekraken .grok .api ;
16
+ package io .thekraken .grok .api ;
17
17
18
18
import java .util .ArrayList ;
19
19
import java .util .Collections ;
27
27
import java .util .regex .Matcher ;
28
28
import java .util .regex .Pattern ;
29
29
30
+ import io .thekraken .grok .api .exception .GrokException ;
30
31
import org .apache .commons .lang3 .StringUtils ;
31
32
32
- import oi .thekraken .grok .api .exception .GrokException ;
33
-
34
33
/**
35
34
* {@code Discovery} try to find the best pattern for the given string.
36
35
*
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*******************************************************************************/
16
- package oi .thekraken .grok .api ;
16
+ package io .thekraken .grok .api ;
17
17
18
18
import java .util .ArrayList ;
19
19
import java .util .Iterator ;
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*******************************************************************************/
16
- package oi .thekraken .grok .api ;
16
+ package io .thekraken .grok .api ;
17
17
18
18
import java .io .BufferedReader ;
19
19
import java .io .File ;
30
30
import java .util .regex .Pattern ;
31
31
32
32
33
+ import io .thekraken .grok .api .exception .GrokException ;
33
34
import org .apache .commons .lang3 .StringUtils ;
34
35
import org .slf4j .Logger ;
35
36
import org .slf4j .LoggerFactory ;
36
37
37
38
38
- import oi .thekraken .grok .api .exception .GrokException ;
39
-
40
-
41
39
/**
42
40
* {@code Grok} parse arbitrary text and structure it.<br>
43
41
*
Original file line number Diff line number Diff line change 1
- package oi .thekraken .grok .api ;
1
+ package io .thekraken .grok .api ;
2
2
3
3
import java .util .LinkedHashMap ;
4
4
import java .util .LinkedHashSet ;
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*******************************************************************************/
16
- package oi .thekraken .grok .api ;
16
+ package io .thekraken .grok .api ;
17
17
18
18
19
19
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*******************************************************************************/
16
- package oi .thekraken .grok .api ;
16
+ package io .thekraken .grok .api ;
17
17
18
18
import java .io .File ;
19
19
import java .util .*;
20
20
21
- import oi .thekraken .grok .api .exception .GrokError ;
21
+ import io .thekraken .grok .api .exception .GrokError ;
22
22
23
23
/**
24
24
* Set of Groks instance
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*******************************************************************************/
16
- package oi .thekraken .grok .api .exception ;
16
+ package io .thekraken .grok .api .exception ;
17
17
18
18
/**
19
19
* Not used, too much c style..
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*******************************************************************************/
16
- package oi .thekraken .grok .api .exception ;
16
+ package io .thekraken .grok .api .exception ;
17
17
18
18
/**
19
19
* Signals that an {@code Grok} exception of some sort has occurred.
Original file line number Diff line number Diff line change 13
13
import org .junit .Test ;
14
14
import org .junit .runners .MethodSorters ;
15
15
16
- import oi .thekraken .grok .api .Grok ;
17
- import oi .thekraken .grok .api .Match ;
18
- import oi .thekraken .grok .api .exception .GrokException ;
16
+ import io .thekraken .grok .api .exception .GrokException ;
19
17
20
18
21
19
@ FixMethodOrder (MethodSorters .NAME_ASCENDING )
You can’t perform that action at this time.
0 commit comments