@@ -61,7 +61,6 @@ public StringSearchInterpolator( String startExpr, String endExpr )
61
61
/**
62
62
* {@inheritDoc}
63
63
*/
64
- @ Override
65
64
public void addValueSource ( ValueSource valueSource )
66
65
{
67
66
valueSources .add ( valueSource );
@@ -70,7 +69,6 @@ public void addValueSource( ValueSource valueSource )
70
69
/**
71
70
* {@inheritDoc}
72
71
*/
73
- @ Override
74
72
public void removeValuesSource ( ValueSource valueSource )
75
73
{
76
74
valueSources .remove ( valueSource );
@@ -79,7 +77,6 @@ public void removeValuesSource( ValueSource valueSource )
79
77
/**
80
78
* {@inheritDoc}
81
79
*/
82
- @ Override
83
80
public void addPostProcessor ( InterpolationPostProcessor postProcessor )
84
81
{
85
82
postProcessors .add ( postProcessor );
@@ -88,27 +85,23 @@ public void addPostProcessor( InterpolationPostProcessor postProcessor )
88
85
/**
89
86
* {@inheritDoc}
90
87
*/
91
- @ Override
92
88
public void removePostProcessor ( InterpolationPostProcessor postProcessor )
93
89
{
94
90
postProcessors .remove ( postProcessor );
95
91
}
96
92
97
- @ Override
98
93
public String interpolate ( String input , String thisPrefixPattern )
99
94
throws InterpolationException
100
95
{
101
96
return interpolate ( input , new SimpleRecursionInterceptor () );
102
97
}
103
98
104
- @ Override
105
99
public String interpolate ( String input , String thisPrefixPattern , RecursionInterceptor recursionInterceptor )
106
100
throws InterpolationException
107
101
{
108
102
return interpolate ( input , recursionInterceptor );
109
103
}
110
104
111
- @ Override
112
105
public String interpolate ( String input )
113
106
throws InterpolationException
114
107
{
@@ -121,7 +114,6 @@ public String interpolate( String input )
121
114
*
122
115
* TODO: Ensure unresolvable expressions don't trigger infinite recursion.
123
116
*/
124
- @ Override
125
117
public String interpolate ( String input , RecursionInterceptor recursionInterceptor )
126
118
throws InterpolationException
127
119
{
@@ -292,7 +284,6 @@ else if ( endIdx < input.length() )
292
284
* @return a {@link List} that may be interspersed with {@link String} and
293
285
* {@link Throwable} instances.
294
286
*/
295
- @ Override
296
287
public List getFeedback ()
297
288
{
298
289
List <?> messages = new ArrayList ();
@@ -311,7 +302,6 @@ public List getFeedback()
311
302
/**
312
303
* Clear the feedback messages from previous interpolate(..) calls.
313
304
*/
314
- @ Override
315
305
public void clearFeedback ()
316
306
{
317
307
for ( ValueSource vs : valueSources )
@@ -320,19 +310,16 @@ public void clearFeedback()
320
310
}
321
311
}
322
312
323
- @ Override
324
313
public boolean isCacheAnswers ()
325
314
{
326
315
return cacheAnswers ;
327
316
}
328
317
329
- @ Override
330
318
public void setCacheAnswers ( boolean cacheAnswers )
331
319
{
332
320
this .cacheAnswers = cacheAnswers ;
333
321
}
334
322
335
- @ Override
336
323
public void clearAnswers ()
337
324
{
338
325
existingAnswers .clear ();
0 commit comments