Skip to content

Commit bc62e0e

Browse files
Pavel Marekgilles-duboscq
authored andcommitted
Fix style.
Using deprecated types in javadoc is considered an error now.
1 parent c2137f8 commit bc62e0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/env/frame/FrameSlotChangeMonitor.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -539,7 +539,7 @@ Object send(Message message, Object[] args,
539539

540540
private static final class FrameSlotInfoImpl {
541541
/**
542-
* This is meant to monitor updates performed on {@link FrameSlot}. Each {@link FrameSlot}
542+
* This is meant to monitor updates performed on {@code FrameSlot}. Each {@code FrameSlot}
543543
* holds an {@link Assumption} in it's "info" field; it is valid as long as no non-local
544544
* update has ever taken place.<br/>
545545
* The background to this rather strange assumption is that non-local reads are very hard to
@@ -775,7 +775,7 @@ public synchronized void setMultiSlot(Frame frame, FrameSlot slot, Object newVal
775775
/**
776776
* Retrieves the not-changed-locally {@link Assumption} for the given frame slot.
777777
*
778-
* @return The "not changed locally" assumption of the given {@link FrameSlot}
778+
* @return The "not changed locally" assumption of the given {@code FrameSlot}
779779
*/
780780
public static Assumption getNotChangedNonLocallyAssumption(FrameSlot slot) {
781781
return getFrameSlotInfo(slot).nonLocalModifiedAssumption;
@@ -817,10 +817,10 @@ private static synchronized FrameSlot findOrAddFrameSlot(FrameDescriptor fd, Obj
817817
// methods for changing frame slot contents
818818

819819
/**
820-
* Checks if the assumption of the given {@link FrameSlot} has to be invalidated.
820+
* Checks if the assumption of the given {@code FrameSlot} has to be invalidated.
821821
*
822822
* @param curFrame
823-
* @param slot {@link FrameSlot}; its "info" is assumed to be an Assumption, throws an
823+
* @param slot {@code FrameSlot}; its "info" is assumed to be an Assumption, throws an
824824
* {@link RInternalError} otherwise
825825
* @param invalidateProfile Used to guard the invalidation code.
826826
*/

0 commit comments

Comments
 (0)