Skip to content

Commit 88aea36

Browse files
author
timantim
committed
Removed console logs from codebase
1 parent ceb6fa5 commit 88aea36

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

projects/angular-material-extensions/google-maps-autocomplete/src/lib/component/mat-google-maps-autocomplete.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ export class MatGoogleMapsAutocompleteComponent implements OnInit, ControlValueA
195195
}
196196
this.address = place.formatted_address;
197197
this.onAutocompleteSelected.emit(place);
198-
// console.log('onAutocompleteSelected -> ', place);
199198
this.onLocationSelected.emit(
200199
{
201200
latitude: place.geometry.location.lat(),
@@ -208,7 +207,6 @@ export class MatGoogleMapsAutocompleteComponent implements OnInit, ControlValueA
208207
}
209208

210209
public onQuery(event: any) {
211-
// console.log('onChange()', event);
212210
this.onChange.emit(this.address);
213211
}
214212

projects/angular-material-extensions/google-maps-autocomplete/src/lib/component/mat-search-google-maps-autocomplete/mat-search-google-maps-autocomplete.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ export class MatSearchGoogleMapsAutocompleteComponent implements OnInit, Control
102102
set value(value: GermanAddress) {
103103
this._value = value;
104104
this.propagateChange(this.value);
105-
// console.log('setValue', this._value);
106105
}
107106

108107
ngOnInit() {

projects/angular-material-extensions/google-maps-autocomplete/src/lib/directives/mat-google-maps-autocomplete.directive.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ export class MatGoogleMapsAutocompleteDirective implements OnInit, ControlValueA
9393
}
9494

9595
ngOnInit(): void {
96-
console.log('validator', this)
9796
if (isPlatformBrowser(this.platformId)) {
9897
const options: AutocompleteOptions = {
9998
// types: ['address'],

0 commit comments

Comments
 (0)