Skip to content

Commit 366a0f3

Browse files
committed
chore: little changes
Signed-off-by: Bartosz Czyż <[email protected]>
1 parent e4d9489 commit 366a0f3

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

here-naksha-cli/src/jvmMain/java/com/here/naksha/cli/copy/service/executors/OneShotFeaturesWriteExecutor.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
* <li>All features are loaded into memory</li>
3131
* <li>Writes in a single transaction</li>
3232
* </ul>
33-
*
34-
* <p><em>ONE SHOT, ONE KILL (YOUR MEMORY)</em></p>
3533
*/
3634
public final class OneShotFeaturesWriteExecutor implements FeaturesWriteExecutor {
3735
/**

here-naksha-cli/src/jvmTest/java/com/here/naksha/cli/copy/service/executors/FeaturesWriteExecutorsCommonTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
import static org.mockito.Mockito.verify;
2929

3030
abstract class FeaturesWriteExecutorsCommonTest {
31-
protected final FeaturesWriteExecutor featuresWriteExecutor = createFeaturesWriteExecutor();
32-
protected final NakshaStorage targetNakshaStorage = new NakshaStorage("target", "targetclassname");
33-
protected final CopyElement targetCopyElement = new CopyElement.Builder(targetNakshaStorage)
31+
private final FeaturesWriteExecutor featuresWriteExecutor = createFeaturesWriteExecutor();
32+
private final NakshaStorage targetNakshaStorage = new NakshaStorage("target", "targetclassname");
33+
private final CopyElement targetCopyElement = new CopyElement.Builder(targetNakshaStorage)
3434
.setMapId("targetmap")
3535
.setCollectionId("targetcol")
3636
.build();
37-
protected static SessionOptions sessionOptions;
37+
private static SessionOptions sessionOptions;
3838

3939
@BeforeAll
4040
static void beforeAll() {

0 commit comments

Comments
 (0)