| 1 | package com.fwmotion.threescale.cms.model; | |
| 2 | ||
| 3 | import jakarta.annotation.Nonnull; | |
| 4 | ||
| 5 | public interface CmsTemplate extends CmsObject { | |
| 6 | ||
| 7 | @Nonnull | |
| 8 | @Override | |
| 9 | default ThreescaleObjectType getType() { | |
| 10 |
1
1. getType : replaced return value with null for com/fwmotion/threescale/cms/model/CmsTemplate::getType → KILLED |
return ThreescaleObjectType.TEMPLATE; |
| 11 | } | |
| 12 | ||
| 13 | } | |
Mutations | ||
| 10 |
1.1 |