Skip to content

Commit 442417a

Browse files
committed
Formatting
1 parent 5369e48 commit 442417a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/PythonAbstractObject.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ public final boolean isContextManager(@Exclusive @Cached HasInheritedAttributeNo
678678
@Exclusive @Cached("createBinaryProfile()") ConditionProfile profile) {
679679
return profile.profile(hasEnterNode.execute(this, __ENTER__) && hasExitNode.execute(this, __EXIT__));
680680
}
681-
681+
682682
private static final String DATETIME_MODULE_NAME = "datetime";
683683
private static final String TIME_MODULE_NAME = "time";
684684
private static final String DATE_TYPE = "date";
@@ -714,7 +714,7 @@ public LocalDate asDate(@Shared("getClassNode") @Cached GetLazyClassNode getClas
714714
@Shared("readTypeNode") @Cached ReadAttributeFromObjectNode readTypeNode,
715715
@Shared("isSubtypeNode") @Cached IsSubtypeNode.IsSubtypeWithoutFrameNode isSubtypeNode,
716716
@Shared("castToIntNode") @Cached CastToJavaIntNode castToIntNode,
717-
@CachedLibrary("this") InteropLibrary lib,
717+
@CachedLibrary("this") InteropLibrary lib,
718718
@Shared("dateTimeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile dateTimeModuleLoaded,
719719
@Shared("timeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile timeModuleLoaded) throws UnsupportedMessageException {
720720
LazyPythonClass objType = getClassNode.execute(this);
@@ -751,7 +751,7 @@ public LocalDate asDate(@Shared("getClassNode") @Cached GetLazyClassNode getClas
751751
@ExportMessage
752752
public boolean isTime(@Shared("getClassNode") @Cached GetLazyClassNode getClassNode,
753753
@Shared("readTypeNode") @Cached ReadAttributeFromObjectNode readTypeNode,
754-
@Shared("isSubtypeNode") @Cached IsSubtypeNode.IsSubtypeWithoutFrameNode isSubtype,
754+
@Shared("isSubtypeNode") @Cached IsSubtypeNode.IsSubtypeWithoutFrameNode isSubtype,
755755
@Shared("dateTimeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile dateTimeModuleLoaded,
756756
@Shared("timeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile timeModuleLoaded) {
757757
LazyPythonClass objType = getClassNode.execute(this);
@@ -776,7 +776,7 @@ public LocalTime asTime(@Shared("getClassNode") @Cached GetLazyClassNode getClas
776776
@Shared("readTypeNode") @Cached ReadAttributeFromObjectNode readTypeNode,
777777
@Shared("isSubtypeNode") @Cached IsSubtypeNode.IsSubtypeWithoutFrameNode isSubtypeNode,
778778
@Shared("castToIntNode") @Cached CastToJavaIntNode castToIntNode,
779-
@CachedLibrary("this") InteropLibrary lib,
779+
@CachedLibrary("this") InteropLibrary lib,
780780
@Shared("dateTimeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile dateTimeModuleLoaded,
781781
@Shared("timeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile timeModuleLoaded) throws UnsupportedMessageException {
782782
LazyPythonClass objType = getClassNode.execute(this);
@@ -815,7 +815,7 @@ public LocalTime asTime(@Shared("getClassNode") @Cached GetLazyClassNode getClas
815815
public boolean isTimeZone(@Shared("getClassNode") @Cached GetLazyClassNode getClassNode,
816816
@Shared("readTypeNode") @Cached ReadAttributeFromObjectNode readTypeNode,
817817
@Shared("isSubtypeNode") @Cached IsSubtypeNode.IsSubtypeWithoutFrameNode isSubtype,
818-
@CachedLibrary(limit = "2") InteropLibrary lib,
818+
@CachedLibrary(limit = "2") InteropLibrary lib,
819819
@Shared("dateTimeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile dateTimeModuleLoaded,
820820
@Shared("timeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile timeModuleLoaded) {
821821
LazyPythonClass objType = getClassNode.execute(this);
@@ -869,7 +869,7 @@ public ZoneId asTimeZone(@Shared("getClassNode") @Cached GetLazyClassNode getCla
869869
@Shared("readTypeNode") @Cached ReadAttributeFromObjectNode readTypeNode,
870870
@Shared("isSubtypeNode") @Cached IsSubtypeNode.IsSubtypeWithoutFrameNode isSubtypeNode,
871871
@Shared("castToIntNode") @Cached CastToJavaIntNode castToIntNode,
872-
@CachedLibrary(limit = "3") InteropLibrary lib,
872+
@CachedLibrary(limit = "3") InteropLibrary lib,
873873
@Shared("dateTimeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile dateTimeModuleLoaded,
874874
@Shared("timeModuleProfile") @Cached("createBinaryProfile()") ConditionProfile timeModuleLoaded) throws UnsupportedMessageException {
875875
if (!lib.isTimeZone(this)) {

0 commit comments

Comments
 (0)