File tree 3 files changed +11
-9
lines changed
3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 43
43
44
44
<!-- Checks for Javadoc comments. -->
45
45
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
46
- <module name =" JavadocMethod" >
46
+ <!-- < module name="JavadocMethod">
47
47
<property name="scope" value="package"/>
48
48
<property name="allowMissingParamTags" value="true"/>
49
49
<property name="allowMissingThrowsTags" value="true"/>
50
50
<property name="allowMissingReturnTag" value="true"/>
51
51
<property name="allowThrowsTagsForSubclasses" value="true"/>
52
52
<property name="allowUndeclaredRTE" value="true"/>
53
53
<property name="allowMissingPropertyJavadoc" value="true"/>
54
- </module >
54
+ </module> -->
55
55
<module name =" JavadocType" >
56
56
<property name =" scope" value =" package" />
57
57
</module >
58
- <module name =" JavadocVariable" >
58
+ <!-- < module name="JavadocVariable">
59
59
<property name="scope" value="package"/>
60
- </module >
60
+ </module> -->
61
61
<module name =" JavadocStyle" >
62
62
<property name =" checkEmptyJavadoc" value =" true" />
63
63
</module >
156
156
<module name =" FinalClass" />
157
157
<module name =" HideUtilityClassConstructor" />
158
158
<module name =" InterfaceIsType" />
159
- <module name =" VisibilityModifier" />
159
+ <module name =" VisibilityModifier" >
160
+ <property name =" protectedAllowed" value =" true" />
161
+ </module >
160
162
161
163
162
164
<!-- Miscellaneous other checks. -->
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ public class PigPenFn<T> extends EvalFunc<T> implements Accumulator<T> {
51
51
}
52
52
53
53
protected final String init , func ;
54
-
54
+
55
55
public PigPenFn (String init , String func ) {
56
56
this .init = init ;
57
57
this .func = func ;
58
58
}
59
-
59
+
60
60
@ SuppressWarnings ("unchecked" )
61
61
@ Override
62
62
public T exec (Tuple input ) throws IOException {
Original file line number Diff line number Diff line change 33
33
34
34
/**
35
35
* Used to execute Clojure code from within a Pig UDF. This implements the Algebraic interface.
36
- *
36
+ *
37
37
* @author mbossenbroek
38
- *
38
+ *
39
39
*/
40
40
public class PigPenFnAlgebraic extends PigPenFn <DataByteArray > implements Algebraic {
41
41
You can’t perform that action at this time.
0 commit comments