Skip to content

Commit c1c844e

Browse files
committed
use resource URL
1 parent 23307f4 commit c1c844e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/scala/ldbc/snb/datagen/generator/serializers/StaticOutputStream.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class StaticOutputStream(
3232
val rawPlace = raw.Place(
3333
place.getId,
3434
place.getName,
35-
DBPOWL.getUrl(place.getName),
35+
DBP.getUrl(place.getName),
3636
place.getType,
3737
partOfPlaceId
3838
)
@@ -89,7 +89,7 @@ class StaticOutputStream(
8989
company.toInt,
9090
Organisation.OrganisationType.Company.toString,
9191
companyName,
92-
DBPOWL.getUrl(companyName),
92+
DBP.getUrl(companyName),
9393
Dictionaries.companies.getCountry(company)
9494
)
9595
organisationStream.write(rawOrganisation)
@@ -103,7 +103,7 @@ class StaticOutputStream(
103103
university.toInt,
104104
Organisation.OrganisationType.University.toString,
105105
universityName,
106-
DBPOWL.getUrl(universityName),
106+
DBP.getUrl(universityName),
107107
Dictionaries.universities.getUniversityCity(university)
108108
)
109109
organisationStream.write(rawOrganisation)

0 commit comments

Comments
 (0)