Skip to content

Commit ea7150e

Browse files
committed
Fix more dangling javadocs
1 parent 52b74c6 commit ea7150e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

graalpython/com.oracle.graal.python.processor/src/com/oracle/graal/python/processor/CApiBuiltinsProcessor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,9 @@ private void generateCApiHeader(List<CApiBuiltinDesc> javaBuiltins, Map<String,
599599
}
600600
}
601601

602-
/**
603-
* Adding constants for methods flags checks in
604-
* {@link NativeCAPISymbol.FUN_GET_METHODS_FLAGS}
602+
/*
603+
* Adding constants for methods flags checks in {@link
604+
* NativeCAPISymbol.FUN_GET_METHODS_FLAGS}
605605
*/
606606
lines.add("");
607607
methodFlags.entrySet().stream().sorted((a, b) -> a.getValue().compareTo(b.getValue())).forEach(e -> lines.add("#define " + e.getKey() + " " + e.getValue()));

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/list/ListBuiltins.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,14 +983,14 @@ boolean doPListObjectStorage(VirtualFrame frame, PList left, PList right,
983983
final SequenceStorage leftStorage = left.getSequenceStorage();
984984
final SequenceStorage rightStorage = right.getSequenceStorage();
985985
final boolean result = neNode.execute(frame, leftStorage, rightStorage);
986-
/**
986+
/*
987987
* This will check if the underlying storage has been modified and if so, we do the
988988
* check again.
989989
*/
990990
if (leftStorage == left.getSequenceStorage() && rightStorage == right.getSequenceStorage()) {
991991
return result;
992992
}
993-
/**
993+
/*
994994
* To avoid possible infinite recursion case, we call the default specialization.
995995
*/
996996
return doPList(frame, left, right, neNode);

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/sequence/storage/SequenceStorageFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2021, Oracle and/or its affiliates.
2+
* Copyright (c) 2017, 2024, Oracle and/or its affiliates.
33
* Copyright (c) 2013, Regents of the University of California
44
*
55
* All rights reserved.
@@ -35,7 +35,7 @@ public static SequenceStorage createStorage(Object[] values) {
3535
assert values != null;
3636
assert values.getClass() == Object[].class : "cannot use non-Object array for modifiable list";
3737

38-
/**
38+
/*
3939
* Try to use unboxed SequenceStorage.
4040
*/
4141
if (values.length == 0) {

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/util/WeakIdentityHashMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/org.graalvm.python.embedding/src/org/graalvm/python/embedding/utils/VirtualFileSystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@
7676

7777
import org.graalvm.polyglot.io.FileSystem;
7878

79-
@Deprecated(since = "24.1.0")
8079
/**
8180
* @deprecated use org.graalvm.python.embedding.vfs.VirtualFileSystem instead
8281
*/
82+
@Deprecated(since = "24.1.0")
8383
public final class VirtualFileSystem implements FileSystem, AutoCloseable {
8484

8585
private static final String VFS_ROOT = "org.graalvm.python.vfs";

0 commit comments

Comments
 (0)