Skip to content

Commit 4228863

Browse files
committed
minor stylistic changes
1 parent fafaafc commit 4228863

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/main/java/com/fasterxml/jackson/core/TokenStreamFactory.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ public abstract class TokenStreamFactory
2020
private static final long serialVersionUID = 2;
2121

2222
/*
23-
/**********************************************************
23+
/**********************************************************************
2424
/* Capability introspection
25-
/**********************************************************
25+
/**********************************************************************
2626
*/
2727

2828
/**
@@ -92,9 +92,9 @@ public abstract class TokenStreamFactory
9292
public abstract Class<? extends FormatFeature> getFormatWriteFeatureType();
9393

9494
/*
95-
/**********************************************************
95+
/**********************************************************************
9696
/* Format detection functionality
97-
/**********************************************************
97+
/**********************************************************************
9898
*/
9999

100100
/**
@@ -123,9 +123,9 @@ public abstract class TokenStreamFactory
123123
public abstract String getFormatName();
124124

125125
/*
126-
/**********************************************************
126+
/**********************************************************************
127127
/* Configuration access
128-
/**********************************************************
128+
/**********************************************************************
129129
*/
130130

131131
public abstract boolean isEnabled(JsonParser.Feature f);
@@ -138,9 +138,9 @@ public abstract class TokenStreamFactory
138138
public abstract int getFormatGeneratorFeatures();
139139

140140
/*
141-
/**********************************************************
141+
/**********************************************************************
142142
/* Factory methods, parsers
143-
/**********************************************************
143+
/**********************************************************************
144144
*/
145145

146146
public abstract JsonParser createParser(byte[] data) throws IOException;
@@ -157,9 +157,9 @@ public abstract class TokenStreamFactory
157157
public abstract JsonParser createNonBlockingByteArrayParser() throws IOException;
158158

159159
/*
160-
/**********************************************************
160+
/**********************************************************************
161161
/* Factory methods, generators
162-
/**********************************************************
162+
/**********************************************************************
163163
*/
164164

165165
public abstract JsonGenerator createGenerator(DataOutput out, JsonEncoding enc) throws IOException;
@@ -170,9 +170,9 @@ public abstract class TokenStreamFactory
170170
public abstract JsonGenerator createGenerator(Writer w) throws IOException;
171171

172172
/*
173-
/**********************************************************
173+
/**********************************************************************
174174
/* Internal factory methods, other
175-
/**********************************************************
175+
/**********************************************************************
176176
*/
177177

178178
protected OutputStream _createDataOutputWrapper(DataOutput out) {

0 commit comments

Comments
 (0)