Skip to content

Commit b17f4ce

Browse files
committed
Fix copyrights and style
1 parent 0a9042d commit b17f4ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/method/AbstractMethodBuiltins.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Object getModule(PBuiltinMethod self, Object value,
228228
abstract static class DocNode extends PythonBinaryBuiltinNode {
229229
@Specialization(guards = "isNoValue(none)")
230230
Object getDoc(PMethod self, @SuppressWarnings("unused") PNone none,
231-
@Cached("create()") ReadAttributeFromObjectNode readNode) {
231+
@Cached("create()") ReadAttributeFromObjectNode readNode) {
232232
Object doc = readNode.execute(self.getFunction(), __DOC__);
233233
if (doc == PNone.NO_VALUE) {
234234
return PNone.NONE;
@@ -238,7 +238,7 @@ Object getDoc(PMethod self, @SuppressWarnings("unused") PNone none,
238238

239239
@Specialization(guards = "isNoValue(none)")
240240
Object getDoc(PBuiltinMethod self, @SuppressWarnings("unused") PNone none,
241-
@Cached("create()") ReadAttributeFromObjectNode readNode) {
241+
@Cached("create()") ReadAttributeFromObjectNode readNode) {
242242
Object doc = readNode.execute(self.getFunction(), __DOC__);
243243
if (doc == PNone.NO_VALUE) {
244244
return PNone.NONE;

0 commit comments

Comments
 (0)