Skip to content

Commit 62fea7d

Browse files
committed
Relocate package-private member
1 parent 1465e1c commit 62fea7d

File tree

1 file changed

+3
-2
lines changed
  • opengrok-indexer/src/main/java/org/opengrok/indexer/search/context

1 file changed

+3
-2
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/search/context/Context.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/*
2121
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2222
* Portions Copyright 2011 Jens Elkner.
23-
* Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
23+
* Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
2424
*/
2525
package org.opengrok.indexer.search.context;
2626

@@ -56,12 +56,13 @@
5656
*/
5757
public class Context {
5858

59+
static final int MAXFILEREAD = 1024 * 1024;
60+
5961
private static final Logger LOGGER = LoggerFactory.getLogger(Context.class);
6062

6163
private final Query query;
6264
private final QueryBuilder qbuilder;
6365
private final LineMatcher[] m;
64-
static final int MAXFILEREAD = 1024 * 1024;
6566
private char[] buffer;
6667
PlainLineTokenizer tokens;
6768
String queryAsURI;

0 commit comments

Comments
 (0)