Skip to content

Commit

Permalink
Merge pull request #391 from ngmr/improve-java-idiom-oayo-13
Browse files Browse the repository at this point in the history
style: improve imports
  • Loading branch information
joe-chacko authored Nov 8, 2024
2 parents ec5d6c0 + 92970f8 commit b553c11
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010 IBM Corporation and others.
* Copyright 2024 IBM Corporation and others.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -17,6 +17,9 @@
*/
package org.apache.yoko.orb.OAD;

import org.omg.CORBA.Object;
import org.omg.CORBA.portable.IDLEntity;

//
// IDL:orb.yoko.apache.org/OAD/ProcessEndpoint:1.0
//
Expand All @@ -28,7 +31,7 @@
**/

public interface ProcessEndpoint extends ProcessEndpointOperations,
org.omg.CORBA.Object,
org.omg.CORBA.portable.IDLEntity
Object,
IDLEntity
{
}

0 comments on commit b553c11

Please sign in to comment.