@@ -92,18 +92,18 @@ public void setPermissions(Map<String, String> permissions) {
9292 this .permissions = permissions ;
9393 }
9494
95- /* package */ GHApp wrapUp (GitHub root ) {
95+ GHApp wrapUp (GitHub root ) {
9696 this .root = root ;
9797 return this ;
9898 }
9999
100100 /**
101101 * Obtains all the installations associated with this app.
102- *
102+ * <p>
103103 * You must use a JWT to access this endpoint.
104104 *
105- * @see <a href="https://developer.github.com/v3/apps/#list-installations">List installations</a>
106105 * @return a list of App installations
106+ * @see <a href="https://developer.github.com/v3/apps/#list-installations">List installations</a>
107107 */
108108 @ Preview
109109 @ Deprecated
@@ -113,15 +113,15 @@ public PagedIterable<GHAppInstallation> listInstallations() {
113113 }
114114
115115 /**
116- * Obtain an installation associated with this app. You must use a JWT to access this endpoint.
116+ * Obtain an installation associated with this app.
117+ * <p>
118+ * You must use a JWT to access this endpoint.
117119 *
118120 * @param id
119121 * Installation Id
120- *
121122 * @return a GHAppInstallation
122123 * @throws IOException
123124 * on error
124- *
125125 * @see <a href="https://developer.github.com/v3/apps/#get-an-installation">Get an installation</a>
126126 */
127127 @ Preview
@@ -132,15 +132,15 @@ public GHAppInstallation getInstallationById(long id) throws IOException {
132132 }
133133
134134 /**
135- * Obtain an organization installation associated with this app. You must use a JWT to access this endpoint.
135+ * Obtain an organization installation associated with this app.
136+ * <p>
137+ * You must use a JWT to access this endpoint.
136138 *
137139 * @param name
138140 * Organization name
139- *
140141 * @return a GHAppInstallation
141142 * @throws IOException
142143 * on error
143- *
144144 * @see <a href="https://developer.github.com/v3/apps/#get-an-organization-installation">Get an organization
145145 * installation</a>
146146 */
@@ -152,17 +152,17 @@ public GHAppInstallation getInstallationByOrganization(String name) throws IOExc
152152 }
153153
154154 /**
155- * Obtain an repository installation associated with this app You must use a JWT to access this endpoint.
155+ * Obtain an repository installation associated with this app.
156+ * <p>
157+ * You must use a JWT to access this endpoint.
156158 *
157159 * @param ownerName
158160 * Organization or user name
159161 * @param repositoryName
160162 * Repository name
161- *
162163 * @return a GHAppInstallation
163164 * @throws IOException
164165 * on error
165- *
166166 * @see <a href="https://developer.github.com/v3/apps/#get-a-repository-installation">Get a repository
167167 * installation</a>
168168 */
@@ -175,15 +175,15 @@ public GHAppInstallation getInstallationByRepository(String ownerName, String re
175175 }
176176
177177 /**
178- * Obtain a user installation associated with this app You must use a JWT to access this endpoint.
178+ * Obtain a user installation associated with this app.
179+ * <p>
180+ * You must use a JWT to access this endpoint.
179181 *
180182 * @param name
181183 * user name
182- *
183184 * @return a GHAppInstallation
184185 * @throws IOException
185186 * on error
186- *
187187 * @see <a href="https://developer.github.com/v3/apps/#get-a-user-installation">Get a user installation</a>
188188 */
189189 @ Preview
0 commit comments