Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zoziha committed Jul 25, 2024
1 parent 7343905 commit 6421752
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/creational/abstract-factory/abstract_factory_main.f90
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
program abstract_factory_main

use, intrinsic :: iso_fortran_env, only: int8
use abstract_factory_module, only: isports_factory_type, erke_type, lining_type, get_sports_factory, erke_shoe_type, erke_shirt_type, &
lining_shoe_type, lining_shirt_type, ishoe_type, ishirt_type
use abstract_factory_module, only: isports_factory_type, erke_type, lining_type, get_sports_factory, erke_shoe_type, &
erke_shirt_type, lining_shoe_type, lining_shirt_type, ishoe_type, ishirt_type

class(isports_factory_type), allocatable :: erke_factory, lining_factory
class(ishoe_type), allocatable :: erke_shoe
Expand Down
4 changes: 2 additions & 2 deletions src/creational/abstract-factory/abstract_factory_module.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ module abstract_factory_module
implicit none
private

public :: isports_factory_type, erke_type, lining_type, get_sports_factory, erke_shoe_type, erke_shirt_type, &
lining_shoe_type, lining_shirt_type, ishoe_type, ishirt_type
public :: isports_factory_type, erke_type, lining_type, get_sports_factory, erke_shoe_type, &
erke_shirt_type, lining_shoe_type, lining_shirt_type, ishoe_type, ishirt_type

!> Abstract classes
type, abstract :: isports_factory_type
Expand Down

0 comments on commit 6421752

Please sign in to comment.