From 1b7b45fe0d18ecad03943f74a53a950f679d40a8 Mon Sep 17 00:00:00 2001 From: semyonsinchenko Date: Tue, 19 Aug 2025 10:10:21 +0200 Subject: [PATCH] Update javadocs to fix the build --- .../org/graphframes/propertygraph/PropertyGraphFrame.scala | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/src/main/scala/org/graphframes/propertygraph/PropertyGraphFrame.scala b/core/src/main/scala/org/graphframes/propertygraph/PropertyGraphFrame.scala index 49aa7611e..5c55bb468 100644 --- a/core/src/main/scala/org/graphframes/propertygraph/PropertyGraphFrame.scala +++ b/core/src/main/scala/org/graphframes/propertygraph/PropertyGraphFrame.scala @@ -66,8 +66,6 @@ case class PropertyGraphFrame( * @return * A GraphFrame containing the unified representation of the selected and filtered property * groups - * @throws IllegalArgumentException - * if any specified property group name doesn't exist */ def toGraphFrame( vertexPropertyGroups: Seq[String], @@ -167,9 +165,6 @@ case class PropertyGraphFrame( * @return * A DataFrame representing the unified vertices data where each group has been appropriately * filtered, joined, and processed based on its configuration. - * @throws IllegalArgumentException - * If any of the specified vertex group names do not exist in the PropertyGraphFrame - * configuration. */ def joinVertices(verticesData: DataFrame, vertexGroups: Seq[String]): DataFrame = { require(vertexGroups.forall(this.vertexGroups.contains))