Skip to content

Commit a58e936

Browse files
committed
refactoring
1 parent 9848eac commit a58e936

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/main/java/com/igormaznitsa/prologparser/DefaultParserContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
public class DefaultParserContext implements ParserContext {
4040

41-
private static final Op[] EMPTY = new Op[0];
41+
protected static final Op[] EMPTY = new Op[0];
4242
protected final Set<String> opPrefixes = new HashSet<>();
4343
protected final Map<String, OpContainer> opContainers = new HashMap<>();
4444
protected final int flags;

src/main/java/com/igormaznitsa/prologparser/terms/Quotation.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public enum Quotation {
5555

5656
/**
5757
* Get quotation mark.
58+
*
5859
* @return the quotation mark as string
5960
*/
6061
public String getQuotationMark() {
@@ -63,6 +64,7 @@ public String getQuotationMark() {
6364

6465
/**
6566
* Quotate string.
67+
*
6668
* @param str string to quotate, can be null
6769
* @return quotated string
6870
*/

0 commit comments

Comments
 (0)