Skip to content

Commit

Permalink
Minor protocol corrections.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabacman committed Jun 10, 2021
1 parent b3db9b3 commit b1e914f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ WillowJavascriptNamespaceTest >> testCallServerFunction [
{ #category : #'tests-printing' }
WillowJavascriptNamespaceTest >> testClassificationAccess [

self assert: Willow classification >> #loading = 'willow-loading'
self assert: Willow classification >> #loading equals: 'willow-loading' asJavascript
]

{ #category : #'tests-printing' }
WillowJavascriptNamespaceTest >> testConstantsAccess [

self assert: WillowJavascriptNamespace new constants >> #css >> #auto = 'auto'
self assert: WillowJavascriptNamespace new constants >> #css >> #auto equals: 'auto' asJavascript
]

{ #category : #'tests-Accessing' }
Expand Down
6 changes: 3 additions & 3 deletions source/Willow-Core/TimeFieldWebView.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ TimeFieldWebView >> changeTimeTo: aTime [
self changeModelTo: aTime
]

{ #category : #'private - Accessing' }
{ #category : #'private - accessing' }
TimeFieldWebView >> identifierPrefix [

^ 'time-field'
]

{ #category : #'private - Accessing' }
{ #category : #initialization }
TimeFieldWebView >> initializeTransformingWith: aTextCodec [

textCodec := aTextCodec
]

{ #category : #'private - Accessing' }
{ #category : #'private - accessing' }
TimeFieldWebView >> textCodec [

^ textCodec
Expand Down

0 comments on commit b1e914f

Please sign in to comment.