Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old module names #80

Merged
merged 1 commit into from
Sep 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions src/SQLite3-Core/SQLite3Library.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -623,12 +623,6 @@ SQLite3Library >> macLibraryName [
self error: 'Module not found.'
]

{ #category : #'private - accessing' }
SQLite3Library >> macModuleName [
"Remove later - this is just to satisfy old Pharo 6"
^self macLibraryName
]

{ #category : #accessing }
SQLite3Library >> nameFor: aStatement at: aColumn [
^ self apiColumnName: aStatement atColumn: aColumn
Expand Down Expand Up @@ -758,13 +752,6 @@ SQLite3Library >> unix32LibraryName [
self error: 'Module not found.'
]

{ #category : #'private - accessing' }
SQLite3Library >> unix32ModuleName [
"Remove later - this is just to satisfy old Pharo 6"

^self unix32LibraryName
]

{ #category : #'private - accessing' }
SQLite3Library >> unix64LibraryName [
(#('/usr/lib/x86_64-linux-gnu' '/lib/x86_64-linux-gnu' '/usr/lib'),
Expand All @@ -778,25 +765,11 @@ SQLite3Library >> unix64LibraryName [
self error: 'Module not found.'
]

{ #category : #'private - accessing' }
SQLite3Library >> unix64ModuleName [
"Remove later - this is just to satisfy old Pharo 6"

^self unix64LibraryName
]

{ #category : #'private - accessing' }
SQLite3Library >> win32LibraryName [
^ 'sqlite3'
]

{ #category : #'private - accessing' }
SQLite3Library >> win32ModuleName [
"Remove later - this is just to satisfy old Pharo 6"

^self win32LibraryName
]

{ #category : #operating }
SQLite3Library >> with: aStatement at: aColumn putBlob: aByteArray [

Expand Down