File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,3 @@ import { Options, Vue } from "vue-class-component";
14
14
export default class App extends Vue {}
15
15
</script >
16
16
17
- <style >
18
- </style >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export class MavenAccess {
5
5
const url = `/maven2/${ groupId . replaceAll ( "." , "/" ) } /${ artifactId
6
6
} /${ version } /${ artifactId } -${ version } .pom`;
7
7
8
- return await fetch ( url )
8
+ return fetch ( url )
9
9
. then ( ( response ) => response . text ( ) )
10
10
. then ( ( str ) => {
11
11
const parser = new XMLParser ( ) ;
@@ -15,7 +15,7 @@ export class MavenAccess {
15
15
}
16
16
17
17
private async retrieveAndProcessDirectory ( url : string ) : Promise < any > {
18
- return await fetch ( url )
18
+ return fetch ( url )
19
19
. then ( ( response ) => response . text ( ) )
20
20
. then ( ( text ) => {
21
21
const parser = new DOMParser ( ) ;
You can’t perform that action at this time.
0 commit comments